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 namespace ios { | 8 namespace ios { |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 | 29 |
30 namespace prefs { | 30 namespace prefs { |
31 | 31 |
32 extern const char kContextualSearchEnabled[]; | 32 extern const char kContextualSearchEnabled[]; |
33 extern const char kIosBookmarkFolderDefault[]; | 33 extern const char kIosBookmarkFolderDefault[]; |
34 extern const char kIosBookmarkPromoAlreadySeen[]; | 34 extern const char kIosBookmarkPromoAlreadySeen[]; |
35 extern const char kBrowsingDataMigrationHasBeenPossible[]; | 35 extern const char kBrowsingDataMigrationHasBeenPossible[]; |
36 extern const char kOTRStashStatePathSystemBackupExcluded[]; | 36 extern const char kOTRStashStatePathSystemBackupExcluded[]; |
37 extern const char kIosHandoffToOtherDevices[]; | 37 extern const char kIosHandoffToOtherDevices[]; |
38 extern const char kLastSessionExitedCleanly[]; | 38 extern const char kLastSessionExitedCleanly[]; |
| 39 extern const char kLastSessionUsedWKWebViewControlGroup[]; |
39 extern const char kMetricsReportingWifiOnly[]; | 40 extern const char kMetricsReportingWifiOnly[]; |
40 | 41 |
41 // TODO(stkhapugin): Consider migrating from these two bools to an integer. | 42 // TODO(stkhapugin): Consider migrating from these two bools to an integer. |
42 // http://crbug.com/538573 | 43 // http://crbug.com/538573 |
43 extern const char kNetworkPredictionEnabled[]; | 44 extern const char kNetworkPredictionEnabled[]; |
44 extern const char kNetworkPredictionWifiOnly[]; | 45 extern const char kNetworkPredictionWifiOnly[]; |
45 | 46 |
46 extern const char kNtpShownBookmarksFolder[]; | 47 extern const char kNtpShownBookmarksFolder[]; |
47 extern const char kShowMemoryDebuggingTools[]; | 48 extern const char kShowMemoryDebuggingTools[]; |
48 | 49 |
49 extern const char kVoiceSearchLocale[]; | 50 extern const char kVoiceSearchLocale[]; |
50 extern const char kVoiceSearchTTS[]; | 51 extern const char kVoiceSearchTTS[]; |
51 | 52 |
52 extern const char kSigninLastAccounts[]; | 53 extern const char kSigninLastAccounts[]; |
53 extern const char kSigninLastAccountsMigrated[]; | 54 extern const char kSigninLastAccountsMigrated[]; |
54 extern const char kSigninSharedAuthenticationUserId[]; | 55 extern const char kSigninSharedAuthenticationUserId[]; |
55 extern const char kSigninShouldPromptForSigninAgain[]; | 56 extern const char kSigninShouldPromptForSigninAgain[]; |
56 | 57 |
57 extern const char kOmniboxGeolocationAuthorizationState[]; | 58 extern const char kOmniboxGeolocationAuthorizationState[]; |
58 extern const char kOmniboxGeolocationLastAuthorizationAlertVersion[]; | 59 extern const char kOmniboxGeolocationLastAuthorizationAlertVersion[]; |
59 | 60 |
60 extern const char kRateThisAppDialogLastShownTime[]; | 61 extern const char kRateThisAppDialogLastShownTime[]; |
61 | 62 |
62 } // namespace prefs | 63 } // namespace prefs |
63 | 64 |
64 #endif // IOS_CHROME_BROWSER_PREF_NAMES_H_ | 65 #endif // IOS_CHROME_BROWSER_PREF_NAMES_H_ |
OLD | NEW |