mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 745065: Backing out removal of Apps sync engine
This commit is contained in:
parent
7bbed9aafc
commit
c825ee20c7
@ -240,7 +240,6 @@ install.rdf
|
||||
modules/JSON.jsm
|
||||
modules/SpatialNavigation.js
|
||||
modules/utils.js
|
||||
modules/services-sync/engines/apps.js
|
||||
mozilla-runtime@BIN_SUFFIX@
|
||||
old-homepage-default.properties
|
||||
README.txt
|
||||
@ -1045,7 +1044,6 @@ xpicleanup@BIN_SUFFIX@
|
||||
modules/services-sync/base_records/keys.js
|
||||
modules/services-sync/base_records/wbo.js
|
||||
modules/services-sync/constants.js
|
||||
modules/services-sync/engines/apps.js
|
||||
modules/services-sync/engines/bookmarks.js
|
||||
modules/services-sync/engines/clients.js
|
||||
modules/services-sync/engines/forms.js
|
||||
|
@ -109,6 +109,7 @@ HISTORY_STORE_BATCH_SIZE: 50, // same as MOBILE_BATCH_SIZE
|
||||
FORMS_STORE_BATCH_SIZE: 50, // same as MOBILE_BATCH_SIZE
|
||||
PASSWORDS_STORE_BATCH_SIZE: 50, // same as MOBILE_BATCH_SIZE
|
||||
ADDONS_STORE_BATCH_SIZE: 1000000, // process all addons at once
|
||||
APPS_STORE_BATCH_SIZE: 50, // same as MOBILE_BATCH_SIZE
|
||||
|
||||
// score thresholds for early syncs
|
||||
SINGLE_USER_THRESHOLD: 1000,
|
||||
|
@ -50,6 +50,7 @@ let lazies = {
|
||||
"engines/prefs.js": ["PrefsEngine"],
|
||||
"engines/passwords.js": ["PasswordEngine"],
|
||||
"engines/tabs.js": ["TabEngine"],
|
||||
"engines/apps.js": ["AppsEngine"],
|
||||
"identity.js": ["Identity"],
|
||||
"jpakeclient.js": ["JPAKEClient"],
|
||||
"keys.js": ["BulkKeyBundle", "SyncKeyBundle"],
|
||||
|
@ -23,6 +23,7 @@ pref("services.sync.engine.history", true);
|
||||
pref("services.sync.engine.passwords", true);
|
||||
pref("services.sync.engine.prefs", true);
|
||||
pref("services.sync.engine.tabs", true);
|
||||
pref("services.sync.engine.apps", false);
|
||||
pref("services.sync.engine.tabs.filteredUrls", "^(about:.*|chrome://weave/.*|wyciwyg:.*|file:.*)$");
|
||||
|
||||
pref("services.sync.jpake.serverURL", "https://setup.services.mozilla.com/");
|
||||
@ -62,4 +63,5 @@ pref("services.sync.log.logger.engine.passwords", "Debug");
|
||||
pref("services.sync.log.logger.engine.prefs", "Debug");
|
||||
pref("services.sync.log.logger.engine.tabs", "Debug");
|
||||
pref("services.sync.log.logger.engine.addons", "Debug");
|
||||
pref("services.sync.log.logger.engine.apps", "Debug");
|
||||
pref("services.sync.log.cryptoDebug", false);
|
||||
|
Loading…
Reference in New Issue
Block a user