Bug 745065 - Remove sync engine for apps (superseded by AitC)

This commit is contained in:
Anant Narayanan 2012-04-13 11:13:01 -07:00
parent ff21fa7d22
commit c3980e163e
4 changed files with 2 additions and 4 deletions

View File

@ -240,6 +240,7 @@ 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
@ -1044,6 +1045,7 @@ 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

View File

@ -109,7 +109,6 @@ 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,

View File

@ -50,7 +50,6 @@ 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"],

View File

@ -23,7 +23,6 @@ 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/");
@ -63,5 +62,4 @@ 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);