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

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

Issue 12033093: sync: Implementation of Priority Preferences. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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
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 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 1714 matching lines...) Expand 10 before | Expand all | Expand 10 after
1725 // Boolean specifying whether to automatically sync all data types (including 1725 // Boolean specifying whether to automatically sync all data types (including
1726 // future ones, as they're added). If this is true, the following preferences 1726 // future ones, as they're added). If this is true, the following preferences
1727 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. 1727 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored.
1728 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced"; 1728 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced";
1729 1729
1730 // Booleans specifying whether the user has selected to sync the following 1730 // Booleans specifying whether the user has selected to sync the following
1731 // datatypes. 1731 // datatypes.
1732 const char kSyncBookmarks[] = "sync.bookmarks"; 1732 const char kSyncBookmarks[] = "sync.bookmarks";
1733 const char kSyncPasswords[] = "sync.passwords"; 1733 const char kSyncPasswords[] = "sync.passwords";
1734 const char kSyncPreferences[] = "sync.preferences"; 1734 const char kSyncPreferences[] = "sync.preferences";
1735 const char kSyncPriorityPreferences[] = "sync.priority_preferences";
1735 const char kSyncAppNotifications[] = "sync.app_notifications"; 1736 const char kSyncAppNotifications[] = "sync.app_notifications";
1736 const char kSyncAppSettings[] = "sync.app_settings"; 1737 const char kSyncAppSettings[] = "sync.app_settings";
1737 const char kSyncApps[] = "sync.apps"; 1738 const char kSyncApps[] = "sync.apps";
1738 const char kSyncAutofill[] = "sync.autofill"; 1739 const char kSyncAutofill[] = "sync.autofill";
1739 const char kSyncAutofillProfile[] = "sync.autofill_profile"; 1740 const char kSyncAutofillProfile[] = "sync.autofill_profile";
1740 const char kSyncThemes[] = "sync.themes"; 1741 const char kSyncThemes[] = "sync.themes";
1741 const char kSyncTypedUrls[] = "sync.typed_urls"; 1742 const char kSyncTypedUrls[] = "sync.typed_urls";
1742 const char kSyncExtensions[] = "sync.extensions"; 1743 const char kSyncExtensions[] = "sync.extensions";
1743 const char kSyncExtensionSettings[] = "sync.extension_settings"; 1744 const char kSyncExtensionSettings[] = "sync.extension_settings";
1744 const char kSyncSearchEngines[] = "sync.search_engines"; 1745 const char kSyncSearchEngines[] = "sync.search_engines";
(...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after
2360 const char kRLZBrand[] = "rlz.brand"; 2361 const char kRLZBrand[] = "rlz.brand";
2361 // Whether RLZ pings are disabled. 2362 // Whether RLZ pings are disabled.
2362 const char kRLZDisabled[] = "rlz.disabled"; 2363 const char kRLZDisabled[] = "rlz.disabled";
2363 #endif 2364 #endif
2364 2365
2365 // The directory in user data dir that contains the profile to be used with the 2366 // The directory in user data dir that contains the profile to be used with the
2366 // app launcher. 2367 // app launcher.
2367 extern const char kAppListProfile[] = "app_list.profile"; 2368 extern const char kAppListProfile[] = "app_list.profile";
2368 2369
2369 } // namespace prefs 2370 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698