| 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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
| 8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 extern const char kPluginsDisabledPlugins[]; | 299 extern const char kPluginsDisabledPlugins[]; |
| 300 extern const char kPluginsDisabledPluginsExceptions[]; | 300 extern const char kPluginsDisabledPluginsExceptions[]; |
| 301 extern const char kPluginsEnabledPlugins[]; | 301 extern const char kPluginsEnabledPlugins[]; |
| 302 extern const char kPluginsEnabledInternalPDF[]; | 302 extern const char kPluginsEnabledInternalPDF[]; |
| 303 extern const char kPluginsEnabledNaCl[]; | 303 extern const char kPluginsEnabledNaCl[]; |
| 304 extern const char kPluginsShowSetReaderDefaultInfobar[]; | 304 extern const char kPluginsShowSetReaderDefaultInfobar[]; |
| 305 extern const char kPluginsShowDetails[]; | 305 extern const char kPluginsShowDetails[]; |
| 306 extern const char kPluginsAllowOutdated[]; | 306 extern const char kPluginsAllowOutdated[]; |
| 307 extern const char kPluginsAlwaysAuthorize[]; | 307 extern const char kPluginsAlwaysAuthorize[]; |
| 308 extern const char kCheckDefaultBrowser[]; | 308 extern const char kCheckDefaultBrowser[]; |
| 309 extern const char kDefaultBrowserFlowDialog[]; |
| 309 extern const char kDefaultBrowserSettingEnabled[]; | 310 extern const char kDefaultBrowserSettingEnabled[]; |
| 310 #if defined(OS_MACOSX) | 311 #if defined(OS_MACOSX) |
| 311 extern const char kShowUpdatePromotionInfoBar[]; | 312 extern const char kShowUpdatePromotionInfoBar[]; |
| 312 #endif | 313 #endif |
| 313 extern const char kUseCustomChromeFrame[]; | 314 extern const char kUseCustomChromeFrame[]; |
| 314 extern const char kShowOmniboxSearchHint[]; | 315 extern const char kShowOmniboxSearchHint[]; |
| 315 extern const char kDesktopNotificationDefaultContentSetting[]; // OBSOLETE | 316 extern const char kDesktopNotificationDefaultContentSetting[]; // OBSOLETE |
| 316 extern const char kDesktopNotificationAllowedOrigins[]; // OBSOLETE | 317 extern const char kDesktopNotificationAllowedOrigins[]; // OBSOLETE |
| 317 extern const char kDesktopNotificationDeniedOrigins[]; // OBSOLETE | 318 extern const char kDesktopNotificationDeniedOrigins[]; // OBSOLETE |
| 318 extern const char kDesktopNotificationPosition[]; | 319 extern const char kDesktopNotificationPosition[]; |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 #endif | 729 #endif |
| 729 | 730 |
| 730 extern const char kInManagedMode[]; | 731 extern const char kInManagedMode[]; |
| 731 | 732 |
| 732 extern const char kNetworkProfileWarningsLeft[]; | 733 extern const char kNetworkProfileWarningsLeft[]; |
| 733 extern const char kNetworkProfileLastWarningTime[]; | 734 extern const char kNetworkProfileLastWarningTime[]; |
| 734 | 735 |
| 735 } // namespace prefs | 736 } // namespace prefs |
| 736 | 737 |
| 737 #endif // CHROME_COMMON_PREF_NAMES_H_ | 738 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |