diff options
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 8b8fa20..69087d9 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -151,9 +151,12 @@ const char kDisableSharedWorkers[] = "disable-shared-workers"; // Disable site-specific tailoring to compatibility issues in WebKit. const char kDisableSiteSpecificQuirks[] = "disable-site-specific-quirks"; -// Disable syncing bookmarks to a Google Account. +// Disable syncing browser data to a Google Account. const char kDisableSync[] = "disable-sync"; +// Disable syncing of bookmarks. +const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; + // Enables the backend service for web resources, used in the new tab page for // loading tips and recommendations from a JSON feed. const char kDisableWebResources[] = "disable-web-resources"; @@ -268,9 +271,12 @@ const char kEnableSessionStorage[] = "enable-session-storage"; // Enables StatsTable, logging statistics to a global named shared memory table. const char kEnableStatsTable[] = "enable-stats-table"; -// Enable syncing bookmarks to a Google Account. +// Enable syncing browser data to a Google Account. const char kEnableSync[] = "enable-sync"; +// Enable syncing browser bookmarks. +const char kEnableSyncBookmarks[] = "enable-sync-bookmarks"; + // Whether the multiple profiles feature based on the user-data-dir flag is // enabled or not. const char kEnableUserDataDirProfiles[] = "enable-udd-profiles"; |