| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 extern const wchar_t kPluginsLastInternalDirectory[]; | 163 extern const wchar_t kPluginsLastInternalDirectory[]; |
| 164 extern const wchar_t kPluginsPluginsList[]; | 164 extern const wchar_t kPluginsPluginsList[]; |
| 165 extern const wchar_t kPluginsPluginsBlacklist[]; | 165 extern const wchar_t kPluginsPluginsBlacklist[]; |
| 166 extern const wchar_t kPluginsEnabledInternalPDF[]; | 166 extern const wchar_t kPluginsEnabledInternalPDF[]; |
| 167 extern const wchar_t kCheckDefaultBrowser[]; | 167 extern const wchar_t kCheckDefaultBrowser[]; |
| 168 #if defined(OS_MACOSX) | 168 #if defined(OS_MACOSX) |
| 169 extern const wchar_t kShowUpdatePromotionInfoBar[]; | 169 extern const wchar_t kShowUpdatePromotionInfoBar[]; |
| 170 #endif | 170 #endif |
| 171 extern const wchar_t kUseCustomChromeFrame[]; | 171 extern const wchar_t kUseCustomChromeFrame[]; |
| 172 extern const wchar_t kShowOmniboxSearchHint[]; | 172 extern const wchar_t kShowOmniboxSearchHint[]; |
| 173 extern const wchar_t kNTPPromoViewsRemaining[]; |
| 173 extern const wchar_t kDesktopNotificationDefaultContentSetting[]; | 174 extern const wchar_t kDesktopNotificationDefaultContentSetting[]; |
| 174 extern const wchar_t kDesktopNotificationAllowedOrigins[]; | 175 extern const wchar_t kDesktopNotificationAllowedOrigins[]; |
| 175 extern const wchar_t kDesktopNotificationDeniedOrigins[]; | 176 extern const wchar_t kDesktopNotificationDeniedOrigins[]; |
| 176 extern const wchar_t kDefaultContentSettings[]; | 177 extern const wchar_t kDefaultContentSettings[]; |
| 177 extern const wchar_t kPerHostContentSettings[]; // OBSOLETE | 178 extern const wchar_t kPerHostContentSettings[]; // OBSOLETE |
| 178 extern const wchar_t kContentSettingsVersion[]; | 179 extern const wchar_t kContentSettingsVersion[]; |
| 179 extern const wchar_t kContentSettingsPatterns[]; | 180 extern const wchar_t kContentSettingsPatterns[]; |
| 180 extern const wchar_t kBlockThirdPartyCookies[]; | 181 extern const wchar_t kBlockThirdPartyCookies[]; |
| 181 extern const wchar_t kClearSiteDataOnExit[]; | 182 extern const wchar_t kClearSiteDataOnExit[]; |
| 182 extern const wchar_t kPerHostZoomLevels[]; | 183 extern const wchar_t kPerHostZoomLevels[]; |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 extern const wchar_t kProxyAutoDetect[]; | 344 extern const wchar_t kProxyAutoDetect[]; |
| 344 extern const wchar_t kProxyServer[]; | 345 extern const wchar_t kProxyServer[]; |
| 345 extern const wchar_t kProxyPacUrl[]; | 346 extern const wchar_t kProxyPacUrl[]; |
| 346 extern const wchar_t kProxyBypassList[]; | 347 extern const wchar_t kProxyBypassList[]; |
| 347 | 348 |
| 348 extern const wchar_t kRegisteredBackgroundContents[]; | 349 extern const wchar_t kRegisteredBackgroundContents[]; |
| 349 | 350 |
| 350 } // namespace prefs | 351 } // namespace prefs |
| 351 | 352 |
| 352 #endif // CHROME_COMMON_PREF_NAMES_H_ | 353 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |