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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 extern const char kGeolocationAccessToken[]; | 473 extern const char kGeolocationAccessToken[]; |
474 extern const char kGeolocationDefaultContentSetting[]; | 474 extern const char kGeolocationDefaultContentSetting[]; |
475 extern const char kGeolocationContentSettings[]; | 475 extern const char kGeolocationContentSettings[]; |
476 | 476 |
477 extern const char kLoginDatabaseMigrated[]; | 477 extern const char kLoginDatabaseMigrated[]; |
478 | 478 |
479 extern const char kRemoteAccessClientFirewallTraversal[]; | 479 extern const char kRemoteAccessClientFirewallTraversal[]; |
480 extern const char kRemoteAccessHostFirewallTraversal[]; | 480 extern const char kRemoteAccessHostFirewallTraversal[]; |
481 | 481 |
482 extern const char kCloudPrintServiceURL[]; | 482 extern const char kCloudPrintServiceURL[]; |
| 483 extern const char kCloudPrintSigninURL[]; |
483 extern const char kCloudPrintDialogWidth[]; | 484 extern const char kCloudPrintDialogWidth[]; |
484 extern const char kCloudPrintDialogHeight[]; | 485 extern const char kCloudPrintDialogHeight[]; |
| 486 extern const char kCloudPrintSigninDialogWidth[]; |
| 487 extern const char kCloudPrintSigninDialogHeight[]; |
485 extern const char kCloudPrintProxyEnabled[]; | 488 extern const char kCloudPrintProxyEnabled[]; |
486 extern const char kCloudPrintProxyId[]; | 489 extern const char kCloudPrintProxyId[]; |
487 extern const char kCloudPrintAuthToken[]; | 490 extern const char kCloudPrintAuthToken[]; |
488 extern const char kCloudPrintXMPPAuthToken[]; | 491 extern const char kCloudPrintXMPPAuthToken[]; |
489 extern const char kCloudPrintEmail[]; | 492 extern const char kCloudPrintEmail[]; |
490 extern const char kCloudPrintPrintSystemSettings[]; | 493 extern const char kCloudPrintPrintSystemSettings[]; |
491 extern const char kCloudPrintEnableJobPoll[]; | 494 extern const char kCloudPrintEnableJobPoll[]; |
492 extern const char kCloudPrintRobotRefreshToken[]; | 495 extern const char kCloudPrintRobotRefreshToken[]; |
493 extern const char kCloudPrintRobotEmail[]; | 496 extern const char kCloudPrintRobotEmail[]; |
494 extern const char kVirtualPrinterDriverEnabled[]; | 497 extern const char kVirtualPrinterDriverEnabled[]; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 | 546 |
544 extern const char kUserCreatedLoginItem[]; | 547 extern const char kUserCreatedLoginItem[]; |
545 extern const char kBackgroundModeEnabled[]; | 548 extern const char kBackgroundModeEnabled[]; |
546 | 549 |
547 extern const char kDevicePolicyRefreshRate[]; | 550 extern const char kDevicePolicyRefreshRate[]; |
548 extern const char kUserPolicyRefreshRate[]; | 551 extern const char kUserPolicyRefreshRate[]; |
549 | 552 |
550 } // namespace prefs | 553 } // namespace prefs |
551 | 554 |
552 #endif // CHROME_COMMON_PREF_NAMES_H_ | 555 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |