| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 extern const char kPerHostZoomLevels[]; | 349 extern const char kPerHostZoomLevels[]; |
| 350 extern const char kAutofillDialogAutofillDefault[]; | 350 extern const char kAutofillDialogAutofillDefault[]; |
| 351 extern const char kAutofillDialogPayWithoutWallet[]; | 351 extern const char kAutofillDialogPayWithoutWallet[]; |
| 352 extern const char kAutofillDialogWalletLocationAcceptance[]; | 352 extern const char kAutofillDialogWalletLocationAcceptance[]; |
| 353 extern const char kAutofillDialogSaveData[]; | 353 extern const char kAutofillDialogSaveData[]; |
| 354 extern const char kAutofillDialogWalletShippingSameAsBilling[]; | 354 extern const char kAutofillDialogWalletShippingSameAsBilling[]; |
| 355 extern const char kAutofillGeneratedCardBubbleTimesShown[]; | 355 extern const char kAutofillGeneratedCardBubbleTimesShown[]; |
| 356 extern const char kAutofillDialogDefaults[]; | 356 extern const char kAutofillDialogDefaults[]; |
| 357 extern const char kEditBookmarksEnabled[]; | 357 extern const char kEditBookmarksEnabled[]; |
| 358 | 358 |
| 359 extern const char kEnableTranslate[]; | |
| 360 extern const char kPinnedTabs[]; | 359 extern const char kPinnedTabs[]; |
| 361 | 360 |
| 362 extern const char kDisable3DAPIs[]; | 361 extern const char kDisable3DAPIs[]; |
| 363 extern const char kEnableHyperlinkAuditing[]; | 362 extern const char kEnableHyperlinkAuditing[]; |
| 364 extern const char kEnableReferrers[]; | 363 extern const char kEnableReferrers[]; |
| 365 extern const char kEnableDoNotTrack[]; | 364 extern const char kEnableDoNotTrack[]; |
| 366 | 365 |
| 367 extern const char kImportBookmarks[]; | 366 extern const char kImportBookmarks[]; |
| 368 extern const char kImportHistory[]; | 367 extern const char kImportHistory[]; |
| 369 extern const char kImportHomepage[]; | 368 extern const char kImportHomepage[]; |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 #if defined(OS_WIN) | 937 #if defined(OS_WIN) |
| 939 extern const char kOsPasswordBlank[]; | 938 extern const char kOsPasswordBlank[]; |
| 940 extern const char kOsPasswordLastChanged[]; | 939 extern const char kOsPasswordLastChanged[]; |
| 941 #endif | 940 #endif |
| 942 | 941 |
| 943 extern const char kQuickCheckEnabled[]; | 942 extern const char kQuickCheckEnabled[]; |
| 944 | 943 |
| 945 } // namespace prefs | 944 } // namespace prefs |
| 946 | 945 |
| 947 #endif // CHROME_COMMON_PREF_NAMES_H_ | 946 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |