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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 extern const char kContentSettingsPluginWhitelist[]; | 389 extern const char kContentSettingsPluginWhitelist[]; |
390 extern const char kBlockThirdPartyCookies[]; | 390 extern const char kBlockThirdPartyCookies[]; |
391 extern const char kClearSiteDataOnExit[]; | 391 extern const char kClearSiteDataOnExit[]; |
392 extern const char kDefaultZoomLevel[]; | 392 extern const char kDefaultZoomLevel[]; |
393 extern const char kPerHostZoomLevels[]; | 393 extern const char kPerHostZoomLevels[]; |
394 extern const char kAutofillDialogAutofillDefault[]; | 394 extern const char kAutofillDialogAutofillDefault[]; |
395 extern const char kAutofillDialogHasPaidWithWallet[]; | 395 extern const char kAutofillDialogHasPaidWithWallet[]; |
396 extern const char kAutofillDialogPayWithoutWallet[]; | 396 extern const char kAutofillDialogPayWithoutWallet[]; |
397 extern const char kAutofillDialogShowCount[]; | 397 extern const char kAutofillDialogShowCount[]; |
398 extern const char kAutofillGeneratedCardBubbleTimesShown[]; | 398 extern const char kAutofillGeneratedCardBubbleTimesShown[]; |
| 399 extern const char kAutofillDialogDefaults[]; |
399 extern const char kEditBookmarksEnabled[]; | 400 extern const char kEditBookmarksEnabled[]; |
400 | 401 |
401 extern const char kEnableTranslate[]; | 402 extern const char kEnableTranslate[]; |
402 extern const char kPinnedTabs[]; | 403 extern const char kPinnedTabs[]; |
403 | 404 |
404 extern const char kDisable3DAPIs[]; | 405 extern const char kDisable3DAPIs[]; |
405 extern const char kEnableHyperlinkAuditing[]; | 406 extern const char kEnableHyperlinkAuditing[]; |
406 extern const char kEnableReferrers[]; | 407 extern const char kEnableReferrers[]; |
407 extern const char kEnableDoNotTrack[]; | 408 extern const char kEnableDoNotTrack[]; |
408 | 409 |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
916 extern const char kAppListAppLaunchCount[]; | 917 extern const char kAppListAppLaunchCount[]; |
917 | 918 |
918 extern const char kModuleConflictBubbleShown[]; | 919 extern const char kModuleConflictBubbleShown[]; |
919 | 920 |
920 extern const char kDRMSalt[]; | 921 extern const char kDRMSalt[]; |
921 extern const char kEnableDRM[]; | 922 extern const char kEnableDRM[]; |
922 | 923 |
923 } // namespace prefs | 924 } // namespace prefs |
924 | 925 |
925 #endif // CHROME_COMMON_PREF_NAMES_H_ | 926 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |