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

Side by Side Diff: chrome/common/pref_names.cc

Issue 14053004: Add ManagedUserSettings Sync data type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | sync/internal_api/base_node.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 1712 matching lines...) Expand 10 before | Expand all | Expand 10 after
1723 // Boolean specifying whether the user finished setting up sync. 1723 // Boolean specifying whether the user finished setting up sync.
1724 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed"; 1724 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed";
1725 1725
1726 // Boolean specifying whether to automatically sync all data types (including 1726 // Boolean specifying whether to automatically sync all data types (including
1727 // future ones, as they're added). If this is true, the following preferences 1727 // future ones, as they're added). If this is true, the following preferences
1728 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. 1728 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored.
1729 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced"; 1729 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced";
1730 1730
1731 // Booleans specifying whether the user has selected to sync the following 1731 // Booleans specifying whether the user has selected to sync the following
1732 // datatypes. 1732 // datatypes.
1733 const char kSyncAppNotifications[] = "sync.app_notifications";
1734 const char kSyncAppSettings[] = "sync.app_settings";
1735 const char kSyncApps[] = "sync.apps";
1736 const char kSyncAutofillProfile[] = "sync.autofill_profile";
1737 const char kSyncAutofill[] = "sync.autofill";
1733 const char kSyncBookmarks[] = "sync.bookmarks"; 1738 const char kSyncBookmarks[] = "sync.bookmarks";
1739 const char kSyncDictionary[] = "sync.dictionary";
1740 const char kSyncExtensionSettings[] = "sync.extension_settings";
1741 const char kSyncExtensions[] = "sync.extensions";
1742 const char kSyncFaviconImages[] = "sync.favicon_images";
1743 const char kSyncFaviconTracking[] = "sync.favicon_tracking";
1744 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives";
1745 const char kSyncManagedUserSettings[] = "sync.managed_user_settings";
1734 const char kSyncPasswords[] = "sync.passwords"; 1746 const char kSyncPasswords[] = "sync.passwords";
1735 const char kSyncPreferences[] = "sync.preferences"; 1747 const char kSyncPreferences[] = "sync.preferences";
1736 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; 1748 const char kSyncPriorityPreferences[] = "sync.priority_preferences";
1737 const char kSyncAppNotifications[] = "sync.app_notifications"; 1749 const char kSyncSearchEngines[] = "sync.search_engines";
1738 const char kSyncAppSettings[] = "sync.app_settings"; 1750 const char kSyncSessions[] = "sync.sessions";
1739 const char kSyncApps[] = "sync.apps"; 1751 const char kSyncSyncedNotifications[] = "sync.synced_notifications";
1740 const char kSyncAutofill[] = "sync.autofill"; 1752 const char kSyncTabs[] = "sync.tabs";
1741 const char kSyncAutofillProfile[] = "sync.autofill_profile";
1742 const char kSyncThemes[] = "sync.themes"; 1753 const char kSyncThemes[] = "sync.themes";
1743 const char kSyncTypedUrls[] = "sync.typed_urls"; 1754 const char kSyncTypedUrls[] = "sync.typed_urls";
1744 const char kSyncExtensions[] = "sync.extensions";
1745 const char kSyncExtensionSettings[] = "sync.extension_settings";
1746 const char kSyncSearchEngines[] = "sync.search_engines";
1747 const char kSyncSessions[] = "sync.sessions";
1748 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives";
1749 const char kSyncSyncedNotifications[] = "sync.synced_notifications";
1750 const char kSyncDictionary[] = "sync.dictionary";
1751 const char kSyncFaviconImages[] = "sync.favicon_images";
1752 const char kSyncFaviconTracking[] = "sync.favicon_tracking";
1753 const char kSyncTabs[] = "sync.tabs";
1754 1755
1755 // Boolean used by enterprise configuration management in order to lock down 1756 // Boolean used by enterprise configuration management in order to lock down
1756 // sync. 1757 // sync.
1757 const char kSyncManaged[] = "sync.managed"; 1758 const char kSyncManaged[] = "sync.managed";
1758 1759
1759 // Boolean to prevent sync from automatically starting up. This is 1760 // Boolean to prevent sync from automatically starting up. This is
1760 // used when sync is disabled by the user via the privacy dashboard. 1761 // used when sync is disabled by the user via the privacy dashboard.
1761 const char kSyncSuppressStart[] = "sync.suppress_start"; 1762 const char kSyncSuppressStart[] = "sync.suppress_start";
1762 1763
1763 // List of the currently acknowledged set of sync types, used to figure out 1764 // List of the currently acknowledged set of sync types, used to figure out
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
2384 // the time of the last ping. 2385 // the time of the last ping.
2385 extern const char kAppListLaunchCount[] = "app_list.launch_count"; 2386 extern const char kAppListLaunchCount[] = "app_list.launch_count";
2386 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; 2387 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping";
2387 2388
2388 // The number of times the an app was launched from the app launcher since last 2389 // The number of times the an app was launched from the app launcher since last
2389 // ping and the time of the last ping. 2390 // ping and the time of the last ping.
2390 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; 2391 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count";
2391 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; 2392 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping";
2392 2393
2393 } // namespace prefs 2394 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | sync/internal_api/base_node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698