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 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 #if defined(ENABLE_PLUGINS) | 314 #if defined(ENABLE_PLUGINS) |
315 extern const char kPluginsShowDetails[]; | 315 extern const char kPluginsShowDetails[]; |
316 #endif | 316 #endif |
317 extern const char kPluginsAllowOutdated[]; | 317 extern const char kPluginsAllowOutdated[]; |
318 extern const char kPluginsAlwaysAuthorize[]; | 318 extern const char kPluginsAlwaysAuthorize[]; |
319 #if defined(ENABLE_PLUGIN_INSTALLATION) | 319 #if defined(ENABLE_PLUGIN_INSTALLATION) |
320 extern const char kPluginsMetadata[]; | 320 extern const char kPluginsMetadata[]; |
321 extern const char kPluginsResourceCacheUpdate[]; | 321 extern const char kPluginsResourceCacheUpdate[]; |
322 #endif | 322 #endif |
323 extern const char kCheckDefaultBrowser[]; | 323 extern const char kCheckDefaultBrowser[]; |
| 324 extern const char kResetCheckDefaultBrowser[]; |
324 extern const char kDefaultBrowserSettingEnabled[]; | 325 extern const char kDefaultBrowserSettingEnabled[]; |
325 #if defined(OS_MACOSX) | 326 #if defined(OS_MACOSX) |
326 extern const char kShowUpdatePromotionInfoBar[]; | 327 extern const char kShowUpdatePromotionInfoBar[]; |
327 #endif | 328 #endif |
328 extern const char kUseCustomChromeFrame[]; | 329 extern const char kUseCustomChromeFrame[]; |
329 #if defined(ENABLE_PLUGINS) | 330 #if defined(ENABLE_PLUGINS) |
330 extern const char kContentSettingsPluginWhitelist[]; | 331 extern const char kContentSettingsPluginWhitelist[]; |
331 #endif | 332 #endif |
332 extern const char kPartitionDefaultZoomLevel[]; | 333 extern const char kPartitionDefaultZoomLevel[]; |
333 extern const char kPartitionPerHostZoomLevels[]; | 334 extern const char kPartitionPerHostZoomLevels[]; |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 extern const char kClickedUpdateMenuItem[]; | 794 extern const char kClickedUpdateMenuItem[]; |
794 #endif | 795 #endif |
795 | 796 |
796 #if defined(ENABLE_MEDIA_ROUTER) | 797 #if defined(ENABLE_MEDIA_ROUTER) |
797 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 798 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
798 #endif | 799 #endif |
799 | 800 |
800 } // namespace prefs | 801 } // namespace prefs |
801 | 802 |
802 #endif // CHROME_COMMON_PREF_NAMES_H_ | 803 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |