| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 extern const char kPinUnlockMaximumLength[]; | 329 extern const char kPinUnlockMaximumLength[]; |
| 330 extern const char kPinUnlockWeakPinsAllowed[]; | 330 extern const char kPinUnlockWeakPinsAllowed[]; |
| 331 extern const char kEnableQuickUnlockFingerprint[]; | 331 extern const char kEnableQuickUnlockFingerprint[]; |
| 332 extern const char kInstantTetheringAllowed[]; | 332 extern const char kInstantTetheringAllowed[]; |
| 333 extern const char kInstantTetheringEnabled[]; | 333 extern const char kInstantTetheringEnabled[]; |
| 334 #endif // defined(OS_CHROMEOS) | 334 #endif // defined(OS_CHROMEOS) |
| 335 extern const char kShowHomeButton[]; | 335 extern const char kShowHomeButton[]; |
| 336 extern const char kSpeechRecognitionFilterProfanities[]; | 336 extern const char kSpeechRecognitionFilterProfanities[]; |
| 337 extern const char kSavingBrowserHistoryDisabled[]; | 337 extern const char kSavingBrowserHistoryDisabled[]; |
| 338 extern const char kAllowDeletingBrowserHistory[]; | 338 extern const char kAllowDeletingBrowserHistory[]; |
| 339 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 339 #if !defined(OS_ANDROID) |
| 340 extern const char kMdHistoryMenuPromoShown[]; | 340 extern const char kMdHistoryMenuPromoShown[]; |
| 341 #endif | 341 #endif |
| 342 extern const char kForceGoogleSafeSearch[]; | 342 extern const char kForceGoogleSafeSearch[]; |
| 343 extern const char kForceYouTubeRestrict[]; | 343 extern const char kForceYouTubeRestrict[]; |
| 344 extern const char kForceSessionSync[]; | 344 extern const char kForceSessionSync[]; |
| 345 extern const char kAllowedDomainsForApps[]; | 345 extern const char kAllowedDomainsForApps[]; |
| 346 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 346 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 347 extern const char kUsesSystemTheme[]; | 347 extern const char kUsesSystemTheme[]; |
| 348 #endif | 348 #endif |
| 349 extern const char kCurrentThemePackFilename[]; | 349 extern const char kCurrentThemePackFilename[]; |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 extern const char kClipboardLastModifiedTime[]; | 925 extern const char kClipboardLastModifiedTime[]; |
| 926 #endif | 926 #endif |
| 927 | 927 |
| 928 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) | 928 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) |
| 929 extern const char kOfflinePrefetchBackoff[]; | 929 extern const char kOfflinePrefetchBackoff[]; |
| 930 #endif | 930 #endif |
| 931 | 931 |
| 932 } // namespace prefs | 932 } // namespace prefs |
| 933 | 933 |
| 934 #endif // CHROME_COMMON_PREF_NAMES_H_ | 934 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |