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

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: Created 7 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 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 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 // Boolean specifying whether to automatically sync all data types (including 1706 // Boolean specifying whether to automatically sync all data types (including
1707 // future ones, as they're added). If this is true, the following preferences 1707 // future ones, as they're added). If this is true, the following preferences
1708 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. 1708 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored.
1709 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced"; 1709 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced";
1710 1710
1711 // Booleans specifying whether the user has selected to sync the following 1711 // Booleans specifying whether the user has selected to sync the following
1712 // datatypes. 1712 // datatypes.
1713 const char kSyncBookmarks[] = "sync.bookmarks"; 1713 const char kSyncBookmarks[] = "sync.bookmarks";
1714 const char kSyncPasswords[] = "sync.passwords"; 1714 const char kSyncPasswords[] = "sync.passwords";
1715 const char kSyncPreferences[] = "sync.preferences"; 1715 const char kSyncPreferences[] = "sync.preferences";
1716 const char kSyncPriorityPreferences[] = "sync.priority_preferences";
1716 const char kSyncAppNotifications[] = "sync.app_notifications"; 1717 const char kSyncAppNotifications[] = "sync.app_notifications";
1717 const char kSyncAppSettings[] = "sync.app_settings"; 1718 const char kSyncAppSettings[] = "sync.app_settings";
1718 const char kSyncApps[] = "sync.apps"; 1719 const char kSyncApps[] = "sync.apps";
1719 const char kSyncAutofill[] = "sync.autofill"; 1720 const char kSyncAutofill[] = "sync.autofill";
1720 const char kSyncAutofillProfile[] = "sync.autofill_profile"; 1721 const char kSyncAutofillProfile[] = "sync.autofill_profile";
1721 const char kSyncThemes[] = "sync.themes"; 1722 const char kSyncThemes[] = "sync.themes";
1722 const char kSyncTypedUrls[] = "sync.typed_urls"; 1723 const char kSyncTypedUrls[] = "sync.typed_urls";
1723 const char kSyncExtensions[] = "sync.extensions"; 1724 const char kSyncExtensions[] = "sync.extensions";
1724 const char kSyncExtensionSettings[] = "sync.extension_settings"; 1725 const char kSyncExtensionSettings[] = "sync.extension_settings";
1725 const char kSyncSearchEngines[] = "sync.search_engines"; 1726 const char kSyncSearchEngines[] = "sync.search_engines";
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
2309 const char kRLZDisabled[] = "rlz.disabled"; 2310 const char kRLZDisabled[] = "rlz.disabled";
2310 #endif 2311 #endif
2311 2312
2312 #if defined(ENABLE_APP_LIST) 2313 #if defined(ENABLE_APP_LIST)
2313 // The directory in user data dir that contains the profile to be used with the 2314 // The directory in user data dir that contains the profile to be used with the
2314 // app launcher. 2315 // app launcher.
2315 extern const char kAppListProfile[] = "app_list.profile"; 2316 extern const char kAppListProfile[] = "app_list.profile";
2316 #endif 2317 #endif
2317 2318
2318 } // namespace prefs 2319 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698