| 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 // Contains constants for known URLs and portions thereof. | 5 // Contains constants for known URLs and portions thereof. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ |
| 8 #define CHROME_COMMON_URL_CONSTANTS_H_ | 8 #define CHROME_COMMON_URL_CONSTANTS_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 | 446 |
| 447 // The URL for information on how to use the app launcher. | 447 // The URL for information on how to use the app launcher. |
| 448 extern const char kAppLauncherHelpURL[]; | 448 extern const char kAppLauncherHelpURL[]; |
| 449 | 449 |
| 450 // The URL for the "Learn more" page on sync encryption. | 450 // The URL for the "Learn more" page on sync encryption. |
| 451 extern const char kSyncEncryptionHelpURL[]; | 451 extern const char kSyncEncryptionHelpURL[]; |
| 452 | 452 |
| 453 // The URL for the "Learn more" link when there is a sync error. | 453 // The URL for the "Learn more" link when there is a sync error. |
| 454 extern const char kSyncErrorsHelpURL[]; | 454 extern const char kSyncErrorsHelpURL[]; |
| 455 | 455 |
| 456 // The URL for the "Learn more" link displayed when disconnecting a managed | |
| 457 // profile. | |
| 458 extern const char kEnterpriseManagedAccountHelpURL[]; | |
| 459 | |
| 460 #if defined(OS_CHROMEOS) | 456 #if defined(OS_CHROMEOS) |
| 461 // The URL for the "Learn more" link for natural scrolling on ChromeOS. | 457 // The URL for the "Learn more" link for natural scrolling on ChromeOS. |
| 462 extern const char kNaturalScrollHelpURL[]; | 458 extern const char kNaturalScrollHelpURL[]; |
| 463 | 459 |
| 464 // The URL for the Learn More page about enterprise enrolled devices. | 460 // The URL for the Learn More page about enterprise enrolled devices. |
| 465 extern const char kLearnMoreEnterpriseURL[]; | 461 extern const char kLearnMoreEnterpriseURL[]; |
| 466 #endif | 462 #endif |
| 467 | 463 |
| 468 // The URL for the Learn More link of the non-CWS bubble. | 464 // The URL for the Learn More link of the non-CWS bubble. |
| 469 extern const char kRemoveNonCWSExtensionURL[]; | 465 extern const char kRemoveNonCWSExtensionURL[]; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 | 539 |
| 544 // The URL for the "Learn more" link the the Easy Unlock settings. | 540 // The URL for the "Learn more" link the the Easy Unlock settings. |
| 545 extern const char kEasyUnlockLearnMoreUrl[]; | 541 extern const char kEasyUnlockLearnMoreUrl[]; |
| 546 | 542 |
| 547 // The URL to the device management page in the Easy Unlock settings. | 543 // The URL to the device management page in the Easy Unlock settings. |
| 548 extern const char kEasyUnlockManagementUrl[]; | 544 extern const char kEasyUnlockManagementUrl[]; |
| 549 | 545 |
| 550 } // namespace chrome | 546 } // namespace chrome |
| 551 | 547 |
| 552 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 548 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |