| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef IOS_CHROME_BROWSER_PREF_NAMES_H_ | 5 #ifndef IOS_CHROME_BROWSER_PREF_NAMES_H_ |
| 6 #define IOS_CHROME_BROWSER_PREF_NAMES_H_ | 6 #define IOS_CHROME_BROWSER_PREF_NAMES_H_ |
| 7 | 7 |
| 8 // TODO(rohitrao): Remove this include once embedders are migrated to use the |
| 9 // new pref header. |
| 10 #include "ios/public/provider/chrome/browser/voice/voice_search_prefs.h" |
| 11 |
| 8 namespace prefs { | 12 namespace prefs { |
| 9 | 13 |
| 10 extern const char kAcceptLanguages[]; | 14 extern const char kAcceptLanguages[]; |
| 11 extern const char kApplicationLocale[]; | 15 extern const char kApplicationLocale[]; |
| 12 extern const char kBrowserStateInfoCache[]; | 16 extern const char kBrowserStateInfoCache[]; |
| 13 extern const char kBrowserStateLastUsed[]; | 17 extern const char kBrowserStateLastUsed[]; |
| 14 extern const char kBrowserStatesLastActive[]; | 18 extern const char kBrowserStatesLastActive[]; |
| 15 extern const char kBrowserStatesNumCreated[]; | 19 extern const char kBrowserStatesNumCreated[]; |
| 16 extern const char kBrowsingDataMigrationHasBeenPossible[]; | 20 extern const char kBrowsingDataMigrationHasBeenPossible[]; |
| 17 extern const char kClearBrowsingDataHistoryNoticeShownTimes[]; | 21 extern const char kClearBrowsingDataHistoryNoticeShownTimes[]; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 31 extern const char kSearchSuggestEnabled[]; | 35 extern const char kSearchSuggestEnabled[]; |
| 32 | 36 |
| 33 // TODO(crbug.com/538573): Consider migrating from these two bools to an integer | 37 // TODO(crbug.com/538573): Consider migrating from these two bools to an integer |
| 34 // since only three cases are supported. | 38 // since only three cases are supported. |
| 35 extern const char kNetworkPredictionEnabled[]; | 39 extern const char kNetworkPredictionEnabled[]; |
| 36 extern const char kNetworkPredictionWifiOnly[]; | 40 extern const char kNetworkPredictionWifiOnly[]; |
| 37 | 41 |
| 38 extern const char kNtpShownBookmarksFolder[]; | 42 extern const char kNtpShownBookmarksFolder[]; |
| 39 extern const char kShowMemoryDebuggingTools[]; | 43 extern const char kShowMemoryDebuggingTools[]; |
| 40 | 44 |
| 41 extern const char kVoiceSearchLocale[]; | |
| 42 extern const char kVoiceSearchTTS[]; | |
| 43 | |
| 44 extern const char kSigninLastAccounts[]; | 45 extern const char kSigninLastAccounts[]; |
| 45 extern const char kSigninLastAccountsMigrated[]; | 46 extern const char kSigninLastAccountsMigrated[]; |
| 46 extern const char kSigninSharedAuthenticationUserId[]; | 47 extern const char kSigninSharedAuthenticationUserId[]; |
| 47 extern const char kSigninShouldPromptForSigninAgain[]; | 48 extern const char kSigninShouldPromptForSigninAgain[]; |
| 48 | 49 |
| 49 extern const char kOmniboxGeolocationAuthorizationState[]; | 50 extern const char kOmniboxGeolocationAuthorizationState[]; |
| 50 extern const char kOmniboxGeolocationLastAuthorizationAlertVersion[]; | 51 extern const char kOmniboxGeolocationLastAuthorizationAlertVersion[]; |
| 51 | 52 |
| 52 extern const char kRateThisAppDialogLastShownTime[]; | 53 extern const char kRateThisAppDialogLastShownTime[]; |
| 53 | 54 |
| 54 } // namespace prefs | 55 } // namespace prefs |
| 55 | 56 |
| 56 #endif // IOS_CHROME_BROWSER_PREF_NAMES_H_ | 57 #endif // IOS_CHROME_BROWSER_PREF_NAMES_H_ |
| OLD | NEW |