| OLD | NEW |
| 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 1764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1775 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1775 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
| 1776 const char kSyncAutofill[] = "sync.autofill"; | 1776 const char kSyncAutofill[] = "sync.autofill"; |
| 1777 const char kSyncBookmarks[] = "sync.bookmarks"; | 1777 const char kSyncBookmarks[] = "sync.bookmarks"; |
| 1778 const char kSyncDictionary[] = "sync.dictionary"; | 1778 const char kSyncDictionary[] = "sync.dictionary"; |
| 1779 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1779 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
| 1780 const char kSyncExtensions[] = "sync.extensions"; | 1780 const char kSyncExtensions[] = "sync.extensions"; |
| 1781 const char kSyncFaviconImages[] = "sync.favicon_images"; | 1781 const char kSyncFaviconImages[] = "sync.favicon_images"; |
| 1782 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; | 1782 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; |
| 1783 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 1783 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
| 1784 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; | 1784 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; |
| 1785 const char kSyncManagedUsers[] = "sync.managed_users"; |
| 1785 const char kSyncPasswords[] = "sync.passwords"; | 1786 const char kSyncPasswords[] = "sync.passwords"; |
| 1786 const char kSyncPreferences[] = "sync.preferences"; | 1787 const char kSyncPreferences[] = "sync.preferences"; |
| 1787 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; | 1788 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; |
| 1788 const char kSyncSearchEngines[] = "sync.search_engines"; | 1789 const char kSyncSearchEngines[] = "sync.search_engines"; |
| 1789 const char kSyncSessions[] = "sync.sessions"; | 1790 const char kSyncSessions[] = "sync.sessions"; |
| 1790 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 1791 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
| 1791 const char kSyncTabs[] = "sync.tabs"; | 1792 const char kSyncTabs[] = "sync.tabs"; |
| 1792 const char kSyncThemes[] = "sync.themes"; | 1793 const char kSyncThemes[] = "sync.themes"; |
| 1793 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1794 const char kSyncTypedUrls[] = "sync.typed_urls"; |
| 1794 | 1795 |
| (...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2456 // ping and the time of the last ping. | 2457 // ping and the time of the last ping. |
| 2457 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2458 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
| 2458 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2459 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
| 2459 | 2460 |
| 2460 // A string pref for storing the salt used to compute the pepper device ID. | 2461 // A string pref for storing the salt used to compute the pepper device ID. |
| 2461 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2462 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
| 2462 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2463 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
| 2463 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2464 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
| 2464 | 2465 |
| 2465 } // namespace prefs | 2466 } // namespace prefs |
| OLD | NEW |