| 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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 // The URL for the "Learn more" link when there is a sync error. | 499 // The URL for the "Learn more" link when there is a sync error. |
| 500 extern const char kSyncErrorsHelpURL[]; | 500 extern const char kSyncErrorsHelpURL[]; |
| 501 | 501 |
| 502 #if defined(OS_CHROMEOS) | 502 #if defined(OS_CHROMEOS) |
| 503 // The URL for the "Learn more" link for natural scrolling on ChromeOS. | 503 // The URL for the "Learn more" link for natural scrolling on ChromeOS. |
| 504 extern const char kNaturalScrollHelpURL[]; | 504 extern const char kNaturalScrollHelpURL[]; |
| 505 | 505 |
| 506 // The URL for the Learn More page about enterprise enrolled devices. | 506 // The URL for the Learn More page about enterprise enrolled devices. |
| 507 extern const char kLearnMoreEnterpriseURL[]; | 507 extern const char kLearnMoreEnterpriseURL[]; |
| 508 | 508 |
| 509 // The URL fo the "learn more" link for Google Play Store (Arc++) settings. | 509 // The URL fo the "learn more" link for Google Play Store (ARC) settings. |
| 510 extern const char kAndroidAppsLearnMoreURL[]; | 510 extern const char kAndroidAppsLearnMoreURL[]; |
| 511 #endif | 511 #endif |
| 512 | 512 |
| 513 // The URL for the Learn More link of the non-CWS bubble. | 513 // The URL for the Learn More link of the non-CWS bubble. |
| 514 extern const char kRemoveNonCWSExtensionURL[]; | 514 extern const char kRemoveNonCWSExtensionURL[]; |
| 515 | 515 |
| 516 #if defined(OS_WIN) | 516 #if defined(OS_WIN) |
| 517 extern const char kNotificationsHelpURL[]; | 517 extern const char kNotificationsHelpURL[]; |
| 518 #endif | 518 #endif |
| 519 | 519 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 extern const char kChooserUsbOverviewURL[]; | 617 extern const char kChooserUsbOverviewURL[]; |
| 618 | 618 |
| 619 #if defined(OS_CHROMEOS) | 619 #if defined(OS_CHROMEOS) |
| 620 // The URL for EOL notification | 620 // The URL for EOL notification |
| 621 extern const char kEolNotificationURL[]; | 621 extern const char kEolNotificationURL[]; |
| 622 #endif | 622 #endif |
| 623 | 623 |
| 624 } // namespace chrome | 624 } // namespace chrome |
| 625 | 625 |
| 626 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 626 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |