| 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 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 948 // Boolean controlling whether history saving is disabled. | 948 // Boolean controlling whether history saving is disabled. |
| 949 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 949 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
| 950 | 950 |
| 951 // Boolean controlling whether deleting browsing and download history is | 951 // Boolean controlling whether deleting browsing and download history is |
| 952 // permitted. | 952 // permitted. |
| 953 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; | 953 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; |
| 954 | 954 |
| 955 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. | 955 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. |
| 956 const char kForceSafeSearch[] = "settings.force_safesearch"; | 956 const char kForceSafeSearch[] = "settings.force_safesearch"; |
| 957 | 957 |
| 958 #if defined(TOOLKIT_GTK) | 958 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 959 // GTK specific preference on whether we should match the system GTK theme. | 959 // Linux specific preference on whether we should match the system theme. |
| 960 const char kUsesSystemTheme[] = "extensions.theme.use_system"; | 960 const char kUsesSystemTheme[] = "extensions.theme.use_system"; |
| 961 #endif | 961 #endif |
| 962 const char kCurrentThemePackFilename[] = "extensions.theme.pack"; | 962 const char kCurrentThemePackFilename[] = "extensions.theme.pack"; |
| 963 const char kCurrentThemeID[] = "extensions.theme.id"; | 963 const char kCurrentThemeID[] = "extensions.theme.id"; |
| 964 const char kCurrentThemeImages[] = "extensions.theme.images"; | 964 const char kCurrentThemeImages[] = "extensions.theme.images"; |
| 965 const char kCurrentThemeColors[] = "extensions.theme.colors"; | 965 const char kCurrentThemeColors[] = "extensions.theme.colors"; |
| 966 const char kCurrentThemeTints[] = "extensions.theme.tints"; | 966 const char kCurrentThemeTints[] = "extensions.theme.tints"; |
| 967 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties"; | 967 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties"; |
| 968 | 968 |
| 969 // Boolean pref which persists whether the extensions_ui is in developer mode | 969 // Boolean pref which persists whether the extensions_ui is in developer mode |
| (...skipping 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2497 | 2497 |
| 2498 // How often the bubble has been shown. | 2498 // How often the bubble has been shown. |
| 2499 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2499 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
| 2500 | 2500 |
| 2501 // A string pref for storing the salt used to compute the pepper device ID. | 2501 // A string pref for storing the salt used to compute the pepper device ID. |
| 2502 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2502 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
| 2503 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2503 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
| 2504 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2504 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
| 2505 | 2505 |
| 2506 } // namespace prefs | 2506 } // namespace prefs |
| OLD | NEW |