| 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1177 // Integer that specifies the index of the tab the user was on when they | 1177 // Integer that specifies the index of the tab the user was on when they |
| 1178 // last visited the content settings window. | 1178 // last visited the content settings window. |
| 1179 const char kContentSettingsWindowLastTabIndex[] = | 1179 const char kContentSettingsWindowLastTabIndex[] = |
| 1180 "content_settings_window.last_tab_index"; | 1180 "content_settings_window.last_tab_index"; |
| 1181 | 1181 |
| 1182 // Integer that specifies the index of the tab the user was on when they | 1182 // Integer that specifies the index of the tab the user was on when they |
| 1183 // last visited the Certificate Manager window. | 1183 // last visited the Certificate Manager window. |
| 1184 const char kCertificateManagerWindowLastTabIndex[] = | 1184 const char kCertificateManagerWindowLastTabIndex[] = |
| 1185 "certificate_manager_window.last_tab_index"; | 1185 "certificate_manager_window.last_tab_index"; |
| 1186 | 1186 |
| 1187 // The mere fact that this pref is registered signals that we should show the | 1187 // Boolean that specifies if the first run bubble should be shown. |
| 1188 // First Run Search Information bubble when the first browser window appears. | |
| 1189 // This preference is only registered by the first-run procedure. | 1188 // This preference is only registered by the first-run procedure. |
| 1190 const char kShouldShowFirstRunBubble[] = "show-first-run-bubble"; | 1189 const char kShouldShowFirstRunBubble[] = "show-first-run-bubble"; |
| 1191 | 1190 |
| 1192 // The mere fact that this pref is registered signals that we should show the | |
| 1193 // smaller OEM First Run Search Information bubble when the first | |
| 1194 // browser window appears. | |
| 1195 // This preference is only registered by the first-run procedure. | |
| 1196 const char kShouldUseOEMFirstRunBubble[] = "show-OEM-first-run-bubble"; | |
| 1197 | |
| 1198 // The mere fact that this pref is registered signals that we should show the | |
| 1199 // minimal First Run omnibox information bubble when the first | |
| 1200 // browser window appears. | |
| 1201 // This preference is only registered by the first-run procedure. | |
| 1202 const char kShouldUseMinimalFirstRunBubble[] = "show-minimal-first-run-bubble"; | |
| 1203 | |
| 1204 // Signal that we should show the welcome page when we launch Chrome. | 1191 // Signal that we should show the welcome page when we launch Chrome. |
| 1205 const char kShouldShowWelcomePage[] = "show-welcome-page"; | 1192 const char kShouldShowWelcomePage[] = "show-welcome-page"; |
| 1206 | 1193 |
| 1207 // String containing the last known Google URL. We re-detect this on startup in | 1194 // String containing the last known Google URL. We re-detect this on startup in |
| 1208 // most cases, and use it to send traffic to the correct Google host or with the | 1195 // most cases, and use it to send traffic to the correct Google host or with the |
| 1209 // correct Google domain/country code for whatever location the user is in. | 1196 // correct Google domain/country code for whatever location the user is in. |
| 1210 const char kLastKnownGoogleURL[] = "browser.last_known_google_url"; | 1197 const char kLastKnownGoogleURL[] = "browser.last_known_google_url"; |
| 1211 | 1198 |
| 1212 // String containing the last prompted Google URL to the user. | 1199 // String containing the last prompted Google URL to the user. |
| 1213 // If the user is using .x TLD for Google URL and gets prompted about .y TLD | 1200 // If the user is using .x TLD for Google URL and gets prompted about .y TLD |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1725 | 1712 |
| 1726 // String that represents the recovery component last downloaded version. This | 1713 // String that represents the recovery component last downloaded version. This |
| 1727 // takes the usual 'a.b.c.d' notation. | 1714 // takes the usual 'a.b.c.d' notation. |
| 1728 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1715 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1729 | 1716 |
| 1730 // String that stores the component updater last known state. This is used for | 1717 // String that stores the component updater last known state. This is used for |
| 1731 // troubleshooting. | 1718 // troubleshooting. |
| 1732 const char kComponentUpdaterState[] = "component_updater.state"; | 1719 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1733 | 1720 |
| 1734 } // namespace prefs | 1721 } // namespace prefs |
| OLD | NEW |