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