Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2644)

Unified Diff: chrome/common/chrome_switches.cc

Issue 9489002: Enable the syncing of extension and app settings by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unit tests Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_switches.cc
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 6b3005979f0db3d86e288ab89858e370bb6bd2bf..7215e5fd06f2913ef44f8480ac8aae665a08b9f8 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -336,7 +336,7 @@ const char kDisableRestoreBackgroundContents[] =
// Disables restoring session state (cookies, session storage, etc.) when
// restoring the browsing session.
-const char kDisableRestoreSessionState[] = "disable-restore-session-state";
+const char kDisableRestoreSessionState[] = "disable-restore-session-state";
// Disables the ShortcutsProvider for autocomplete results.
const char kDisableShortcutsProvider[] = "disable-shortcuts-provider";
@@ -347,23 +347,29 @@ const char kDisableSSL3[] = "disable-ssl3";
// Disables syncing browser data to a Google Account.
const char kDisableSync[] = "disable-sync";
+// Disables syncing of app settings.
+const char kDisableSyncAppSettings[] = "disable-sync-app-settings";
+
// Disables syncing of apps.
const char kDisableSyncApps[] = "disable-sync-apps";
// Disable syncing app notifications.
-const char kDisableSyncAppNotifications[] = "disable-sync-app-notifications";
+const char kDisableSyncAppNotifications[] = "disable-sync-app-notifications";
// Disables syncing of autofill.
const char kDisableSyncAutofill[] = "disable-sync-autofill";
// Disables syncing of autofill Profile.
-const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile";
+const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile";
// Disables syncing of bookmarks.
const char kDisableSyncBookmarks[] = "disable-sync-bookmarks";
// Disables sync encryption options.
-const char kDisableSyncEncryption[] = "disable-sync-encryption";
+const char kDisableSyncEncryption[] = "disable-sync-encryption";
+
+// Disables syncing extension settings.
+const char kDisableSyncExtensionSettings[] = "disable-sync-extension-settings";
// Disables syncing of extensions.
const char kDisableSyncExtensions[] = "disable-sync-extensions";
@@ -381,7 +387,7 @@ const char kDisableSyncSearchEngines[] = "disable-sync-search-engines";
const char kDisableSyncThemes[] = "disable-sync-themes";
// Disables syncing browser typed urls.
-const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls";
+const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls";
// TabCloseableStateWatcher disallows closing of tabs and browsers under
// certain situations on ChromeOS. Some tests expect tabs or browsers to close,
@@ -561,9 +567,6 @@ const char kEnableProfiling[] = "enable-profiling";
// supported server-side for searches on google.com.
const char kEnableSdch[] = "enable-sdch";
-// Enables syncing extension settings.
-const char kEnableSyncExtensionSettings[] = "enable-sync-extension-settings";
-
// Enables syncing browser sessions.
const char kEnableSyncTabs[] = "enable-sync-tabs";
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698