| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 extern const char kSafeBrowsingClientKey[]; | 389 extern const char kSafeBrowsingClientKey[]; |
| 390 extern const char kSafeBrowsingWrappedKey[]; | 390 extern const char kSafeBrowsingWrappedKey[]; |
| 391 | 391 |
| 392 extern const char kOptionsWindowLastTabIndex[]; | 392 extern const char kOptionsWindowLastTabIndex[]; |
| 393 extern const char kContentSettingsWindowLastTabIndex[]; | 393 extern const char kContentSettingsWindowLastTabIndex[]; |
| 394 extern const char kCertificateManagerWindowLastTabIndex[]; | 394 extern const char kCertificateManagerWindowLastTabIndex[]; |
| 395 extern const char kShouldShowFirstRunBubble[]; | 395 extern const char kShouldShowFirstRunBubble[]; |
| 396 extern const char kShouldUseOEMFirstRunBubble[]; | 396 extern const char kShouldUseOEMFirstRunBubble[]; |
| 397 extern const char kShouldUseMinimalFirstRunBubble[]; | 397 extern const char kShouldUseMinimalFirstRunBubble[]; |
| 398 extern const char kShouldShowWelcomePage[]; | 398 extern const char kShouldShowWelcomePage[]; |
| 399 extern const char kSyncPromoStartupCount[]; |
| 399 | 400 |
| 400 extern const char kLastKnownGoogleURL[]; | 401 extern const char kLastKnownGoogleURL[]; |
| 401 extern const char kLastPromptedGoogleURL[]; | 402 extern const char kLastPromptedGoogleURL[]; |
| 402 extern const char kLastKnownIntranetRedirectOrigin[]; | 403 extern const char kLastKnownIntranetRedirectOrigin[]; |
| 403 | 404 |
| 404 extern const char kCountryIDAtInstall[]; | 405 extern const char kCountryIDAtInstall[]; |
| 405 extern const char kGeoIDAtInstall[]; // OBSOLETE | 406 extern const char kGeoIDAtInstall[]; // OBSOLETE |
| 406 | 407 |
| 407 extern const char kShutdownType[]; | 408 extern const char kShutdownType[]; |
| 408 extern const char kShutdownNumProcesses[]; | 409 extern const char kShutdownNumProcesses[]; |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 | 588 |
| 588 extern const char kUserCreatedLoginItem[]; | 589 extern const char kUserCreatedLoginItem[]; |
| 589 extern const char kBackgroundModeEnabled[]; | 590 extern const char kBackgroundModeEnabled[]; |
| 590 | 591 |
| 591 extern const char kDevicePolicyRefreshRate[]; | 592 extern const char kDevicePolicyRefreshRate[]; |
| 592 extern const char kUserPolicyRefreshRate[]; | 593 extern const char kUserPolicyRefreshRate[]; |
| 593 | 594 |
| 594 } // namespace prefs | 595 } // namespace prefs |
| 595 | 596 |
| 596 #endif // CHROME_COMMON_PREF_NAMES_H_ | 597 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |