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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 extern const char kDefaultZoomLevel[]; | 296 extern const char kDefaultZoomLevel[]; |
297 extern const char kPerHostZoomLevels[]; | 297 extern const char kPerHostZoomLevels[]; |
298 extern const char kProfileShortcutCreated[]; | 298 extern const char kProfileShortcutCreated[]; |
299 extern const char kAutofillEnabled[]; | 299 extern const char kAutofillEnabled[]; |
300 extern const char kAutofillAuxiliaryProfilesEnabled[]; | 300 extern const char kAutofillAuxiliaryProfilesEnabled[]; |
301 extern const char kAutofillPositiveUploadRate[]; | 301 extern const char kAutofillPositiveUploadRate[]; |
302 extern const char kAutofillNegativeUploadRate[]; | 302 extern const char kAutofillNegativeUploadRate[]; |
303 extern const char kAutofillPersonalDataManagerFirstRun[]; | 303 extern const char kAutofillPersonalDataManagerFirstRun[]; |
304 extern const char kEditBookmarksEnabled[]; | 304 extern const char kEditBookmarksEnabled[]; |
305 | 305 |
| 306 extern const char kEnableAutoGarbledTextFix[]; |
306 extern const char kEnableTranslate[]; | 307 extern const char kEnableTranslate[]; |
307 extern const char kPinnedTabs[]; | 308 extern const char kPinnedTabs[]; |
308 extern const char kHttpThrottlingEnabled[]; | 309 extern const char kHttpThrottlingEnabled[]; |
309 extern const char kHttpThrottlingMayExperiment[]; | 310 extern const char kHttpThrottlingMayExperiment[]; |
310 | 311 |
311 extern const char kDisable3DAPIs[]; | 312 extern const char kDisable3DAPIs[]; |
312 extern const char kEnableHyperlinkAuditing[]; | 313 extern const char kEnableHyperlinkAuditing[]; |
313 extern const char kEnableReferrers[]; | 314 extern const char kEnableReferrers[]; |
314 | 315 |
315 #if defined(OS_MACOSX) | 316 #if defined(OS_MACOSX) |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
644 | 645 |
645 extern const char kDevicePolicyRefreshRate[]; | 646 extern const char kDevicePolicyRefreshRate[]; |
646 extern const char kUserPolicyRefreshRate[]; | 647 extern const char kUserPolicyRefreshRate[]; |
647 | 648 |
648 extern const char kRecoveryComponentVersion[]; | 649 extern const char kRecoveryComponentVersion[]; |
649 extern const char kComponentUpdaterState[]; | 650 extern const char kComponentUpdaterState[]; |
650 | 651 |
651 } // namespace prefs | 652 } // namespace prefs |
652 | 653 |
653 #endif // CHROME_COMMON_PREF_NAMES_H_ | 654 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |