| 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 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 | 493 |
| 494 // The URL for the "Learn more" link when there is a sync error. | 494 // The URL for the "Learn more" link when there is a sync error. |
| 495 extern const char kSyncErrorsHelpURL[]; | 495 extern const char kSyncErrorsHelpURL[]; |
| 496 | 496 |
| 497 #if defined(OS_CHROMEOS) | 497 #if defined(OS_CHROMEOS) |
| 498 // The URL for the "Learn more" link for natural scrolling on ChromeOS. | 498 // The URL for the "Learn more" link for natural scrolling on ChromeOS. |
| 499 extern const char kNaturalScrollHelpURL[]; | 499 extern const char kNaturalScrollHelpURL[]; |
| 500 | 500 |
| 501 // The URL for the Learn More page about enterprise enrolled devices. | 501 // The URL for the Learn More page about enterprise enrolled devices. |
| 502 extern const char kLearnMoreEnterpriseURL[]; | 502 extern const char kLearnMoreEnterpriseURL[]; |
| 503 |
| 504 // The URL fo the "learn more" link for Google Play Store (Arc++) settings. |
| 505 extern const char kAndroidAppsLearnMoreURL[]; |
| 503 #endif | 506 #endif |
| 504 | 507 |
| 505 // The URL for the Learn More link of the non-CWS bubble. | 508 // The URL for the Learn More link of the non-CWS bubble. |
| 506 extern const char kRemoveNonCWSExtensionURL[]; | 509 extern const char kRemoveNonCWSExtensionURL[]; |
| 507 | 510 |
| 508 #if defined(OS_WIN) | 511 #if defined(OS_WIN) |
| 509 extern const char kNotificationsHelpURL[]; | 512 extern const char kNotificationsHelpURL[]; |
| 510 #endif | 513 #endif |
| 511 | 514 |
| 512 // The Welcome Notification More Info URL. | 515 // The Welcome Notification More Info URL. |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 extern const char kChooserUsbOverviewURL[]; | 612 extern const char kChooserUsbOverviewURL[]; |
| 610 | 613 |
| 611 #if defined(OS_CHROMEOS) | 614 #if defined(OS_CHROMEOS) |
| 612 // The URL for EOL notification | 615 // The URL for EOL notification |
| 613 extern const char kEolNotificationURL[]; | 616 extern const char kEolNotificationURL[]; |
| 614 #endif | 617 #endif |
| 615 | 618 |
| 616 } // namespace chrome | 619 } // namespace chrome |
| 617 | 620 |
| 618 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 621 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |