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