OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 | 272 |
273 extern const char kOptionsWindowLastTabIndex[]; | 273 extern const char kOptionsWindowLastTabIndex[]; |
274 extern const char kContentSettingsWindowLastTabIndex[]; | 274 extern const char kContentSettingsWindowLastTabIndex[]; |
275 extern const char kCertificateManagerWindowLastTabIndex[]; | 275 extern const char kCertificateManagerWindowLastTabIndex[]; |
276 extern const char kShouldShowFirstRunBubble[]; | 276 extern const char kShouldShowFirstRunBubble[]; |
277 extern const char kShouldUseOEMFirstRunBubble[]; | 277 extern const char kShouldUseOEMFirstRunBubble[]; |
278 extern const char kShouldUseMinimalFirstRunBubble[]; | 278 extern const char kShouldUseMinimalFirstRunBubble[]; |
279 extern const char kShouldShowWelcomePage[]; | 279 extern const char kShouldShowWelcomePage[]; |
280 | 280 |
281 extern const char kLastKnownGoogleURL[]; | 281 extern const char kLastKnownGoogleURL[]; |
| 282 extern const char kLastPromptedGoogleURL[]; |
282 extern const char kLastKnownIntranetRedirectOrigin[]; | 283 extern const char kLastKnownIntranetRedirectOrigin[]; |
283 | 284 |
284 extern const char kCountryIDAtInstall[]; | 285 extern const char kCountryIDAtInstall[]; |
285 extern const char kGeoIDAtInstall[]; // OBSOLETE | 286 extern const char kGeoIDAtInstall[]; // OBSOLETE |
286 | 287 |
287 extern const char kShutdownType[]; | 288 extern const char kShutdownType[]; |
288 extern const char kShutdownNumProcesses[]; | 289 extern const char kShutdownNumProcesses[]; |
289 extern const char kShutdownNumProcessesSlow[]; | 290 extern const char kShutdownNumProcessesSlow[]; |
290 | 291 |
291 extern const char kRestartLastSessionOnShutdown[]; | 292 extern const char kRestartLastSessionOnShutdown[]; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 extern const char kProxyAutoDetect[]; | 358 extern const char kProxyAutoDetect[]; |
358 extern const char kProxyServer[]; | 359 extern const char kProxyServer[]; |
359 extern const char kProxyPacUrl[]; | 360 extern const char kProxyPacUrl[]; |
360 extern const char kProxyBypassList[]; | 361 extern const char kProxyBypassList[]; |
361 | 362 |
362 extern const char kRegisteredBackgroundContents[]; | 363 extern const char kRegisteredBackgroundContents[]; |
363 | 364 |
364 } // namespace prefs | 365 } // namespace prefs |
365 | 366 |
366 #endif // CHROME_COMMON_PREF_NAMES_H_ | 367 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |