| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 extern const char kPluginsEnabledInternalPDF[]; | 210 extern const char kPluginsEnabledInternalPDF[]; |
| 211 extern const char kPluginsShowSetReaderDefaultInfobar[]; | 211 extern const char kPluginsShowSetReaderDefaultInfobar[]; |
| 212 extern const char kPluginsShowDetails[]; | 212 extern const char kPluginsShowDetails[]; |
| 213 extern const char kCheckDefaultBrowser[]; | 213 extern const char kCheckDefaultBrowser[]; |
| 214 extern const char kDefaultBrowserSettingEnabled[]; | 214 extern const char kDefaultBrowserSettingEnabled[]; |
| 215 #if defined(OS_MACOSX) | 215 #if defined(OS_MACOSX) |
| 216 extern const char kShowUpdatePromotionInfoBar[]; | 216 extern const char kShowUpdatePromotionInfoBar[]; |
| 217 #endif | 217 #endif |
| 218 extern const char kUseCustomChromeFrame[]; | 218 extern const char kUseCustomChromeFrame[]; |
| 219 extern const char kShowOmniboxSearchHint[]; | 219 extern const char kShowOmniboxSearchHint[]; |
| 220 extern const char kIntroducerRegistrations[]; |
| 220 extern const char kDesktopNotificationDefaultContentSetting[]; | 221 extern const char kDesktopNotificationDefaultContentSetting[]; |
| 221 extern const char kDesktopNotificationAllowedOrigins[]; | 222 extern const char kDesktopNotificationAllowedOrigins[]; |
| 222 extern const char kDesktopNotificationDeniedOrigins[]; | 223 extern const char kDesktopNotificationDeniedOrigins[]; |
| 223 extern const char kDesktopNotificationPosition[]; | 224 extern const char kDesktopNotificationPosition[]; |
| 224 extern const char kDefaultContentSettings[]; | 225 extern const char kDefaultContentSettings[]; |
| 225 extern const char kPerHostContentSettings[]; // OBSOLETE | 226 extern const char kPerHostContentSettings[]; // OBSOLETE |
| 226 extern const char kContentSettingsVersion[]; | 227 extern const char kContentSettingsVersion[]; |
| 227 extern const char kContentSettingsPatterns[]; | 228 extern const char kContentSettingsPatterns[]; |
| 228 extern const char kBlockThirdPartyCookies[]; | 229 extern const char kBlockThirdPartyCookies[]; |
| 229 extern const char kBlockNonsandboxedPlugins[]; | 230 extern const char kBlockNonsandboxedPlugins[]; |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 | 472 |
| 472 extern const char kKnownBackgroundPages[]; | 473 extern const char kKnownBackgroundPages[]; |
| 473 | 474 |
| 474 extern const char kDisable3DAPIs[]; | 475 extern const char kDisable3DAPIs[]; |
| 475 | 476 |
| 476 extern const char kRegisteredProtocolHandlers[]; | 477 extern const char kRegisteredProtocolHandlers[]; |
| 477 | 478 |
| 478 } // namespace prefs | 479 } // namespace prefs |
| 479 | 480 |
| 480 #endif // CHROME_COMMON_PREF_NAMES_H_ | 481 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |