| 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 // 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 | 419 |
| 420 extern const char kExcludedSchemes[]; | 420 extern const char kExcludedSchemes[]; |
| 421 | 421 |
| 422 extern const char kSafeBrowsingClientKey[]; | 422 extern const char kSafeBrowsingClientKey[]; |
| 423 extern const char kSafeBrowsingWrappedKey[]; | 423 extern const char kSafeBrowsingWrappedKey[]; |
| 424 | 424 |
| 425 extern const char kOptionsWindowLastTabIndex[]; | 425 extern const char kOptionsWindowLastTabIndex[]; |
| 426 extern const char kContentSettingsWindowLastTabIndex[]; | 426 extern const char kContentSettingsWindowLastTabIndex[]; |
| 427 extern const char kCertificateManagerWindowLastTabIndex[]; | 427 extern const char kCertificateManagerWindowLastTabIndex[]; |
| 428 extern const char kShouldShowFirstRunBubble[]; | 428 extern const char kShouldShowFirstRunBubble[]; |
| 429 extern const char kShouldUseOEMFirstRunBubble[]; | |
| 430 extern const char kShouldUseMinimalFirstRunBubble[]; | |
| 431 extern const char kShouldShowWelcomePage[]; | 429 extern const char kShouldShowWelcomePage[]; |
| 432 | 430 |
| 433 extern const char kLastKnownGoogleURL[]; | 431 extern const char kLastKnownGoogleURL[]; |
| 434 extern const char kLastPromptedGoogleURL[]; | 432 extern const char kLastPromptedGoogleURL[]; |
| 435 extern const char kLastKnownIntranetRedirectOrigin[]; | 433 extern const char kLastKnownIntranetRedirectOrigin[]; |
| 436 | 434 |
| 437 extern const char kCountryIDAtInstall[]; | 435 extern const char kCountryIDAtInstall[]; |
| 438 extern const char kGeoIDAtInstall[]; // OBSOLETE | 436 extern const char kGeoIDAtInstall[]; // OBSOLETE |
| 439 | 437 |
| 440 extern const char kShutdownType[]; | 438 extern const char kShutdownType[]; |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 | 640 |
| 643 extern const char kDevicePolicyRefreshRate[]; | 641 extern const char kDevicePolicyRefreshRate[]; |
| 644 extern const char kUserPolicyRefreshRate[]; | 642 extern const char kUserPolicyRefreshRate[]; |
| 645 | 643 |
| 646 extern const char kRecoveryComponentVersion[]; | 644 extern const char kRecoveryComponentVersion[]; |
| 647 extern const char kComponentUpdaterState[]; | 645 extern const char kComponentUpdaterState[]; |
| 648 | 646 |
| 649 } // namespace prefs | 647 } // namespace prefs |
| 650 | 648 |
| 651 #endif // CHROME_COMMON_PREF_NAMES_H_ | 649 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |