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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 extern const char kContentSettingsPluginWhitelist[]; | 394 extern const char kContentSettingsPluginWhitelist[]; |
395 extern const char kBlockThirdPartyCookies[]; | 395 extern const char kBlockThirdPartyCookies[]; |
396 extern const char kClearSiteDataOnExit[]; | 396 extern const char kClearSiteDataOnExit[]; |
397 extern const char kDefaultZoomLevel[]; | 397 extern const char kDefaultZoomLevel[]; |
398 extern const char kPerHostZoomLevels[]; | 398 extern const char kPerHostZoomLevels[]; |
399 extern const char kAutofillDialogAutofillDefault[]; | 399 extern const char kAutofillDialogAutofillDefault[]; |
400 extern const char kAutofillDialogHasPaidWithWallet[]; | 400 extern const char kAutofillDialogHasPaidWithWallet[]; |
401 extern const char kAutofillDialogPayWithoutWallet[]; | 401 extern const char kAutofillDialogPayWithoutWallet[]; |
402 extern const char kAutofillDialogShowCount[]; | 402 extern const char kAutofillDialogShowCount[]; |
403 extern const char kAutofillGeneratedCardBubbleTimesShown[]; | 403 extern const char kAutofillGeneratedCardBubbleTimesShown[]; |
| 404 extern const char kAutofillDialogDefaults[]; |
404 extern const char kEditBookmarksEnabled[]; | 405 extern const char kEditBookmarksEnabled[]; |
405 | 406 |
406 extern const char kEnableTranslate[]; | 407 extern const char kEnableTranslate[]; |
407 extern const char kPinnedTabs[]; | 408 extern const char kPinnedTabs[]; |
408 | 409 |
409 extern const char kDisable3DAPIs[]; | 410 extern const char kDisable3DAPIs[]; |
410 extern const char kEnableHyperlinkAuditing[]; | 411 extern const char kEnableHyperlinkAuditing[]; |
411 extern const char kEnableReferrers[]; | 412 extern const char kEnableReferrers[]; |
412 extern const char kEnableDoNotTrack[]; | 413 extern const char kEnableDoNotTrack[]; |
413 | 414 |
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
928 extern const char kAppListAppLaunchCount[]; | 929 extern const char kAppListAppLaunchCount[]; |
929 | 930 |
930 extern const char kModuleConflictBubbleShown[]; | 931 extern const char kModuleConflictBubbleShown[]; |
931 | 932 |
932 extern const char kDRMSalt[]; | 933 extern const char kDRMSalt[]; |
933 extern const char kEnableDRM[]; | 934 extern const char kEnableDRM[]; |
934 | 935 |
935 } // namespace prefs | 936 } // namespace prefs |
936 | 937 |
937 #endif // CHROME_COMMON_PREF_NAMES_H_ | 938 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |