| 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 #include "ios/chrome/browser/pref_names.h" | 5 #include "ios/chrome/browser/pref_names.h" |
| 6 | 6 |
| 7 namespace ios { | 7 namespace ios { |
| 8 namespace prefs { | 8 namespace prefs { |
| 9 | 9 |
| 10 // Preferences in ios::prefs:: must have the same value as the corresponding | 10 // Preferences in ios::prefs:: must have the same value as the corresponding |
| 11 // preference on desktop. | 11 // preference on desktop. |
| 12 // See chrome/common/pref_names.cc for a detailed description of each | 12 // See chrome/common/pref_names.cc for a detailed description of each |
| 13 // preference. | 13 // preference. |
| 14 | 14 |
| 15 const char kAcceptLanguages[] = "intl.accept_languages"; | 15 const char kAcceptLanguages[] = "intl.accept_languages"; |
| 16 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; | 16 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; |
| 17 const char kApplicationLocale[] = "intl.app_locale"; |
| 17 const char kBrowserStateInfoCache[] = "profile.info_cache"; | 18 const char kBrowserStateInfoCache[] = "profile.info_cache"; |
| 18 const char kBrowserStateLastUsed[] = "profile.last_used"; | 19 const char kBrowserStateLastUsed[] = "profile.last_used"; |
| 19 const char kBrowserStatesLastActive[] = "profile.last_active_profiles"; | 20 const char kBrowserStatesLastActive[] = "profile.last_active_profiles"; |
| 20 const char kBrowserStatesNumCreated[] = "profile.profiles_created"; | 21 const char kBrowserStatesNumCreated[] = "profile.profiles_created"; |
| 21 const char kDefaultCharset[] = "intl.charset_default"; | 22 const char kDefaultCharset[] = "intl.charset_default"; |
| 22 const char kEnableDoNotTrack[] = "enable_do_not_track"; | 23 const char kEnableDoNotTrack[] = "enable_do_not_track"; |
| 23 const char kHttpServerProperties[] = "net.http_server_properties"; | 24 const char kHttpServerProperties[] = "net.http_server_properties"; |
| 24 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; | 25 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; |
| 25 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 26 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
| 26 const char kSearchSuggestEnabled[] = "search.suggest_enabled"; | 27 const char kSearchSuggestEnabled[] = "search.suggest_enabled"; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 // authorization alert. | 124 // authorization alert. |
| 124 const char kOmniboxGeolocationLastAuthorizationAlertVersion[] = | 125 const char kOmniboxGeolocationLastAuthorizationAlertVersion[] = |
| 125 "ios.omnibox.geolocation_last_authorization_alert_version"; | 126 "ios.omnibox.geolocation_last_authorization_alert_version"; |
| 126 | 127 |
| 127 // Integer which contains the timestamp at which the "Rate This App" dialog was | 128 // Integer which contains the timestamp at which the "Rate This App" dialog was |
| 128 // last shown. | 129 // last shown. |
| 129 const char kRateThisAppDialogLastShownTime[] = | 130 const char kRateThisAppDialogLastShownTime[] = |
| 130 "ios.ratethisapp.dialog_last_shown_time"; | 131 "ios.ratethisapp.dialog_last_shown_time"; |
| 131 | 132 |
| 132 } // namespace prefs | 133 } // namespace prefs |
| OLD | NEW |