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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 extern const char kAutofillEnabled[]; | 310 extern const char kAutofillEnabled[]; |
311 extern const char kAutofillAuxiliaryProfilesEnabled[]; | 311 extern const char kAutofillAuxiliaryProfilesEnabled[]; |
312 extern const char kAutofillPositiveUploadRate[]; | 312 extern const char kAutofillPositiveUploadRate[]; |
313 extern const char kAutofillNegativeUploadRate[]; | 313 extern const char kAutofillNegativeUploadRate[]; |
314 extern const char kAutofillPersonalDataManagerFirstRun[]; | 314 extern const char kAutofillPersonalDataManagerFirstRun[]; |
315 extern const char kEditBookmarksEnabled[]; | 315 extern const char kEditBookmarksEnabled[]; |
316 | 316 |
317 extern const char kEnableTranslate[]; | 317 extern const char kEnableTranslate[]; |
318 extern const char kPinnedTabs[]; | 318 extern const char kPinnedTabs[]; |
319 extern const char kHttpThrottlingEnabled[]; | 319 extern const char kHttpThrottlingEnabled[]; |
320 extern const char kHttpThrottlingMayExperiment[]; | |
321 | 320 |
322 extern const char kDisable3DAPIs[]; | 321 extern const char kDisable3DAPIs[]; |
323 extern const char kEnableHyperlinkAuditing[]; | 322 extern const char kEnableHyperlinkAuditing[]; |
324 extern const char kEnableReferrers[]; | 323 extern const char kEnableReferrers[]; |
325 | 324 |
326 #if defined(OS_MACOSX) | 325 #if defined(OS_MACOSX) |
327 extern const char kPresentationModeEnabled[]; | 326 extern const char kPresentationModeEnabled[]; |
328 #endif | 327 #endif |
329 | 328 |
330 extern const char kImportBookmarks[]; | 329 extern const char kImportBookmarks[]; |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
679 extern const char kMaximumTouchMoveInPixelsForClick[]; | 678 extern const char kMaximumTouchMoveInPixelsForClick[]; |
680 extern const char kMinFlickSpeedSquared[]; | 679 extern const char kMinFlickSpeedSquared[]; |
681 extern const char kMinimumTouchDownDurationInSecondsForClick[]; | 680 extern const char kMinimumTouchDownDurationInSecondsForClick[]; |
682 #endif | 681 #endif |
683 | 682 |
684 extern const char kInManagedMode[]; | 683 extern const char kInManagedMode[]; |
685 | 684 |
686 } // namespace prefs | 685 } // namespace prefs |
687 | 686 |
688 #endif // CHROME_COMMON_PREF_NAMES_H_ | 687 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |