mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 04:39:03 +02:00
* Has storage providers metadata * Scan for storage providers returning preferred provider * Helper methods to access cloud services prefs * Helper method to set cloud storage as default download directory * Notify observers for displaying cloud storage prompt * Support pref value browser.downloads.folderList 3 * Read dropbox custom downloadpath from info.json * Handle rejected providers by saving response in cloud.services.rejected.key * Load providers metadata from providers.json * Tested using add-on implemented in Bug 1365129 * Tests for Linux, Mac and Win Platform MozReview-Commit-ID: LrmoDfsRTBV --HG-- extra : rebase_source : cc3933407def5da26b4c0fb29a32797bc6a13130
18 lines
492 B
Python
18 lines
492 B
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
'tests/unit/xpcshell.ini',
|
|
]
|
|
|
|
JAR_MANIFESTS += ['jar.mn']
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'CloudStorage.jsm',
|
|
]
|
|
|
|
with Files('**'):
|
|
BUG_COMPONENT = ('Toolkit', 'General')
|