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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 // The URL for the "Learn more" link for natural scrolling on ChromeOS. | 456 // The URL for the "Learn more" link for natural scrolling on ChromeOS. |
457 extern const char kNaturalScrollHelpURL[]; | 457 extern const char kNaturalScrollHelpURL[]; |
458 | 458 |
459 // The URL for the Learn More page about enterprise enrolled devices. | 459 // The URL for the Learn More page about enterprise enrolled devices. |
460 extern const char kLearnMoreEnterpriseURL[]; | 460 extern const char kLearnMoreEnterpriseURL[]; |
461 #endif | 461 #endif |
462 | 462 |
463 // The URL for the Learn More link of the non-CWS bubble. | 463 // The URL for the Learn More link of the non-CWS bubble. |
464 extern const char kRemoveNonCWSExtensionURL[]; | 464 extern const char kRemoveNonCWSExtensionURL[]; |
465 | 465 |
| 466 // The URL for the Learn More link for the corrupt extension message. |
| 467 extern const char kCorruptExtensionURL[]; |
| 468 |
466 extern const char kNotificationsHelpURL[]; | 469 extern const char kNotificationsHelpURL[]; |
467 | 470 |
468 // The Welcome Notification More Info URL. | 471 // The Welcome Notification More Info URL. |
469 extern const char kNotificationWelcomeLearnMoreURL[]; | 472 extern const char kNotificationWelcomeLearnMoreURL[]; |
470 | 473 |
471 // Gets the hosts/domains that are shown in chrome://chrome-urls. | 474 // Gets the hosts/domains that are shown in chrome://chrome-urls. |
472 extern const char* const kChromeHostURLs[]; | 475 extern const char* const kChromeHostURLs[]; |
473 extern const size_t kNumberOfChromeHostURLs; | 476 extern const size_t kNumberOfChromeHostURLs; |
474 | 477 |
475 // "Debug" pages which are dangerous and not for general consumption. | 478 // "Debug" pages which are dangerous and not for general consumption. |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 | 541 |
539 // The URL for the "Learn more" link the the Easy Unlock settings. | 542 // The URL for the "Learn more" link the the Easy Unlock settings. |
540 extern const char kEasyUnlockLearnMoreUrl[]; | 543 extern const char kEasyUnlockLearnMoreUrl[]; |
541 | 544 |
542 // The URL to the device management page in the Easy Unlock settings. | 545 // The URL to the device management page in the Easy Unlock settings. |
543 extern const char kEasyUnlockManagementUrl[]; | 546 extern const char kEasyUnlockManagementUrl[]; |
544 | 547 |
545 } // namespace chrome | 548 } // namespace chrome |
546 | 549 |
547 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 550 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |