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

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: 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
Index: chrome/common/chrome_switches.cc
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 75767794c1c658557053387f1edaacbc30c602dd..266f244e977349ace60718684018eb3a516d4f6c 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";
@@ -351,19 +351,22 @@ const char kDisableSync[] = "disable-sync";
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 +384,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 +564,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";

Powered by Google App Engine
This is Rietveld 408576698