| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 #endif | 327 #endif |
| 328 extern const char kCheckDefaultBrowser[]; | 328 extern const char kCheckDefaultBrowser[]; |
| 329 #if defined(OS_WIN) | 329 #if defined(OS_WIN) |
| 330 extern const char kSuppressSwitchToMetroModeOnSetDefault[]; | 330 extern const char kSuppressSwitchToMetroModeOnSetDefault[]; |
| 331 #endif | 331 #endif |
| 332 extern const char kDefaultBrowserSettingEnabled[]; | 332 extern const char kDefaultBrowserSettingEnabled[]; |
| 333 #if defined(OS_MACOSX) | 333 #if defined(OS_MACOSX) |
| 334 extern const char kShowUpdatePromotionInfoBar[]; | 334 extern const char kShowUpdatePromotionInfoBar[]; |
| 335 #endif | 335 #endif |
| 336 extern const char kUseCustomChromeFrame[]; | 336 extern const char kUseCustomChromeFrame[]; |
| 337 extern const char kDesktopNotificationPosition[]; | |
| 338 extern const char kDefaultContentSettings[]; | 337 extern const char kDefaultContentSettings[]; |
| 339 extern const char kContentSettingsClearOnExitMigrated[]; | 338 extern const char kContentSettingsClearOnExitMigrated[]; |
| 340 extern const char kContentSettingsVersion[]; | 339 extern const char kContentSettingsVersion[]; |
| 341 extern const char kContentSettingsPatternPairs[]; | 340 extern const char kContentSettingsPatternPairs[]; |
| 342 extern const char kContentSettingsDefaultWhitelistVersion[]; | 341 extern const char kContentSettingsDefaultWhitelistVersion[]; |
| 343 extern const char kContentSettingsPluginWhitelist[]; | 342 extern const char kContentSettingsPluginWhitelist[]; |
| 344 extern const char kBlockThirdPartyCookies[]; | 343 extern const char kBlockThirdPartyCookies[]; |
| 345 extern const char kClearSiteDataOnExit[]; | 344 extern const char kClearSiteDataOnExit[]; |
| 346 extern const char kDefaultZoomLevel[]; | 345 extern const char kDefaultZoomLevel[]; |
| 347 extern const char kPerHostZoomLevels[]; | 346 extern const char kPerHostZoomLevels[]; |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 897 | 896 |
| 898 #if defined(OS_ANDROID) | 897 #if defined(OS_ANDROID) |
| 899 extern const char kPartnerBookmarkMappings[]; | 898 extern const char kPartnerBookmarkMappings[]; |
| 900 #endif | 899 #endif |
| 901 | 900 |
| 902 extern const char kQuickCheckEnabled[]; | 901 extern const char kQuickCheckEnabled[]; |
| 903 | 902 |
| 904 } // namespace prefs | 903 } // namespace prefs |
| 905 | 904 |
| 906 #endif // CHROME_COMMON_PREF_NAMES_H_ | 905 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |