| 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 extern const char kDisableExtensions[]; | 421 extern const char kDisableExtensions[]; |
| 422 extern const char kDisablePluginFinder[]; | 422 extern const char kDisablePluginFinder[]; |
| 423 extern const char kBrowserActionContainerWidth[]; | 423 extern const char kBrowserActionContainerWidth[]; |
| 424 | 424 |
| 425 extern const char kLastExtensionsUpdateCheck[]; | 425 extern const char kLastExtensionsUpdateCheck[]; |
| 426 extern const char kNextExtensionsUpdateCheck[]; | 426 extern const char kNextExtensionsUpdateCheck[]; |
| 427 | 427 |
| 428 extern const char kExtensionInstallAllowList[]; | 428 extern const char kExtensionInstallAllowList[]; |
| 429 extern const char kExtensionInstallDenyList[]; | 429 extern const char kExtensionInstallDenyList[]; |
| 430 | 430 |
| 431 extern const char kExtensionNotificationsInitializedPref[]; |
| 432 |
| 431 extern const char kExtensionInstallForceList[]; | 433 extern const char kExtensionInstallForceList[]; |
| 432 | 434 |
| 433 extern const char kExtensionBlacklistUpdateVersion[]; | 435 extern const char kExtensionBlacklistUpdateVersion[]; |
| 434 | 436 |
| 435 extern const char kExtensionSidebarWidth[]; | 437 extern const char kExtensionSidebarWidth[]; |
| 436 | 438 |
| 437 extern const char kNTPTipsResourceServer[]; | 439 extern const char kNTPTipsResourceServer[]; |
| 438 | 440 |
| 439 extern const char kNTP4IntroDisplayCount[]; | 441 extern const char kNTP4IntroDisplayCount[]; |
| 440 extern const char kNTPMostVisitedURLsBlacklist[]; | 442 extern const char kNTPMostVisitedURLsBlacklist[]; |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 | 590 |
| 589 extern const char kUserCreatedLoginItem[]; | 591 extern const char kUserCreatedLoginItem[]; |
| 590 extern const char kBackgroundModeEnabled[]; | 592 extern const char kBackgroundModeEnabled[]; |
| 591 | 593 |
| 592 extern const char kDevicePolicyRefreshRate[]; | 594 extern const char kDevicePolicyRefreshRate[]; |
| 593 extern const char kUserPolicyRefreshRate[]; | 595 extern const char kUserPolicyRefreshRate[]; |
| 594 | 596 |
| 595 } // namespace prefs | 597 } // namespace prefs |
| 596 | 598 |
| 597 #endif // CHROME_COMMON_PREF_NAMES_H_ | 599 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |