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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
464 // The URL for the "Learn more" link for natural scrolling on ChromeOS. | 464 // The URL for the "Learn more" link for natural scrolling on ChromeOS. |
465 extern const char kNaturalScrollHelpURL[]; | 465 extern const char kNaturalScrollHelpURL[]; |
466 | 466 |
467 // The URL for the Learn More page about enterprise enrolled devices. | 467 // The URL for the Learn More page about enterprise enrolled devices. |
468 extern const char kLearnMoreEnterpriseURL[]; | 468 extern const char kLearnMoreEnterpriseURL[]; |
469 #endif | 469 #endif |
470 | 470 |
471 // The URL for the Learn More link of the non-CWS bubble. | 471 // The URL for the Learn More link of the non-CWS bubble. |
472 extern const char kRemoveNonCWSExtensionURL[]; | 472 extern const char kRemoveNonCWSExtensionURL[]; |
473 | 473 |
474 // The URL for the Learn More link for the corrupt extension message. | |
475 extern const char kCorruptExtensionURL[]; | |
476 | |
477 extern const char kNotificationsHelpURL[]; | 474 extern const char kNotificationsHelpURL[]; |
478 | 475 |
479 // The Welcome Notification More Info URL. | 476 // The Welcome Notification More Info URL. |
480 extern const char kNotificationWelcomeLearnMoreURL[]; | 477 extern const char kNotificationWelcomeLearnMoreURL[]; |
481 | 478 |
482 // Gets the hosts/domains that are shown in chrome://chrome-urls. | 479 // Gets the hosts/domains that are shown in chrome://chrome-urls. |
483 extern const char* const kChromeHostURLs[]; | 480 extern const char* const kChromeHostURLs[]; |
484 extern const size_t kNumberOfChromeHostURLs; | 481 extern const size_t kNumberOfChromeHostURLs; |
485 | 482 |
486 // "Debug" pages which are dangerous and not for general consumption. | 483 // "Debug" pages which are dangerous and not for general consumption. |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 // The URL for the 32-bit Mac deprecation help center article | 540 // The URL for the 32-bit Mac deprecation help center article |
544 extern const char kMac32BitDeprecationURL[]; | 541 extern const char kMac32BitDeprecationURL[]; |
545 #endif | 542 #endif |
546 | 543 |
547 // The URL for the "Learn more" link the the Easy Unlock settings. | 544 // The URL for the "Learn more" link the the Easy Unlock settings. |
548 extern const char kEasyUnlockLearnMoreUrl[]; | 545 extern const char kEasyUnlockLearnMoreUrl[]; |
549 | 546 |
550 } // namespace chrome | 547 } // namespace chrome |
551 | 548 |
552 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 549 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |