| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 extern const char kDefaultBrowserSettingEnabled[]; | 326 extern const char kDefaultBrowserSettingEnabled[]; |
| 327 #if defined(OS_MACOSX) | 327 #if defined(OS_MACOSX) |
| 328 extern const char kShowUpdatePromotionInfoBar[]; | 328 extern const char kShowUpdatePromotionInfoBar[]; |
| 329 #endif | 329 #endif |
| 330 extern const char kUseCustomChromeFrame[]; | 330 extern const char kUseCustomChromeFrame[]; |
| 331 #if !defined(OS_ANDROID) | 331 #if !defined(OS_ANDROID) |
| 332 extern const char kContentSettingsPluginWhitelist[]; | 332 extern const char kContentSettingsPluginWhitelist[]; |
| 333 #endif | 333 #endif |
| 334 extern const char kClearSiteDataOnExit[]; | 334 extern const char kClearSiteDataOnExit[]; |
| 335 extern const char kPartitionDefaultZoomLevel[]; | 335 extern const char kPartitionDefaultZoomLevel[]; |
| 336 extern const char kDefaultZoomLevelDeprecated[]; | |
| 337 extern const char kPartitionPerHostZoomLevels[]; | 336 extern const char kPartitionPerHostZoomLevels[]; |
| 338 extern const char kPerHostZoomLevelsDeprecated[]; | |
| 339 extern const char kAutofillDialogAutofillDefault[]; | 337 extern const char kAutofillDialogAutofillDefault[]; |
| 340 extern const char kAutofillDialogPayWithoutWallet[]; | 338 extern const char kAutofillDialogPayWithoutWallet[]; |
| 341 extern const char kAutofillDialogWalletLocationAcceptance[]; | 339 extern const char kAutofillDialogWalletLocationAcceptance[]; |
| 342 extern const char kAutofillDialogSaveData[]; | 340 extern const char kAutofillDialogSaveData[]; |
| 343 extern const char kAutofillDialogWalletShippingSameAsBilling[]; | 341 extern const char kAutofillDialogWalletShippingSameAsBilling[]; |
| 344 extern const char kAutofillGeneratedCardBubbleTimesShown[]; | 342 extern const char kAutofillGeneratedCardBubbleTimesShown[]; |
| 345 #if defined(OS_ANDROID) | 343 #if defined(OS_ANDROID) |
| 346 extern const char kAutofillDialogDefaults[]; | 344 extern const char kAutofillDialogDefaults[]; |
| 347 #endif | 345 #endif |
| 348 | 346 |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 | 810 |
| 813 #if defined(ENABLE_EXTENSIONS) | 811 #if defined(ENABLE_EXTENSIONS) |
| 814 extern const char kAnimationPolicy[]; | 812 extern const char kAnimationPolicy[]; |
| 815 #endif | 813 #endif |
| 816 | 814 |
| 817 extern const char kBackgroundTracingLastUpload[]; | 815 extern const char kBackgroundTracingLastUpload[]; |
| 818 | 816 |
| 819 } // namespace prefs | 817 } // namespace prefs |
| 820 | 818 |
| 821 #endif // CHROME_COMMON_PREF_NAMES_H_ | 819 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |