| 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 <stddef.h> | 10 #include <stddef.h> |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 | 519 |
| 520 // The URL fo the "learn more" link for Google Play Store (ARC) settings. | 520 // The URL fo the "learn more" link for Google Play Store (ARC) settings. |
| 521 extern const char kAndroidAppsLearnMoreURL[]; | 521 extern const char kAndroidAppsLearnMoreURL[]; |
| 522 #endif | 522 #endif |
| 523 | 523 |
| 524 // The URL for the Learn More link of the non-CWS bubble. | 524 // The URL for the Learn More link of the non-CWS bubble. |
| 525 extern const char kRemoveNonCWSExtensionURL[]; | 525 extern const char kRemoveNonCWSExtensionURL[]; |
| 526 | 526 |
| 527 #if defined(OS_WIN) | 527 #if defined(OS_WIN) |
| 528 extern const char kNotificationsHelpURL[]; | 528 extern const char kNotificationsHelpURL[]; |
| 529 |
| 530 // The URL for the Learn More link in the Chrome Cleanup settings card. |
| 531 extern const char kChromeCleanerLearnMoreURL[]; |
| 529 #endif | 532 #endif |
| 530 | 533 |
| 531 // The Welcome Notification More Info URL. | 534 // The Welcome Notification More Info URL. |
| 532 extern const char kNotificationWelcomeLearnMoreURL[]; | 535 extern const char kNotificationWelcomeLearnMoreURL[]; |
| 533 | 536 |
| 534 // Gets the hosts/domains that are shown in chrome://chrome-urls. | 537 // Gets the hosts/domains that are shown in chrome://chrome-urls. |
| 535 extern const char* const kChromeHostURLs[]; | 538 extern const char* const kChromeHostURLs[]; |
| 536 extern const size_t kNumberOfChromeHostURLs; | 539 extern const size_t kNumberOfChromeHostURLs; |
| 537 | 540 |
| 538 // "Debug" pages which are dangerous and not for general consumption. | 541 // "Debug" pages which are dangerous and not for general consumption. |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 extern const char kChooserUsbOverviewURL[]; | 636 extern const char kChooserUsbOverviewURL[]; |
| 634 | 637 |
| 635 #if defined(OS_CHROMEOS) | 638 #if defined(OS_CHROMEOS) |
| 636 // The URL for EOL notification | 639 // The URL for EOL notification |
| 637 extern const char kEolNotificationURL[]; | 640 extern const char kEolNotificationURL[]; |
| 638 #endif | 641 #endif |
| 639 | 642 |
| 640 } // namespace chrome | 643 } // namespace chrome |
| 641 | 644 |
| 642 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 645 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |