| 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 #endif | 571 #endif |
| 572 | 572 |
| 573 #if defined(OS_CHROMEOS) | 573 #if defined(OS_CHROMEOS) |
| 574 extern const char kCrosScheme[]; | 574 extern const char kCrosScheme[]; |
| 575 #endif | 575 #endif |
| 576 | 576 |
| 577 #if defined(OS_ANDROID) | 577 #if defined(OS_ANDROID) |
| 578 extern const char kAndroidAppScheme[]; | 578 extern const char kAndroidAppScheme[]; |
| 579 #endif | 579 #endif |
| 580 | 580 |
| 581 #if defined(OS_CHROMEOS) |
| 582 // "Learn more" URL for the Printing section under Options. |
| 583 extern const char kCrosPrintingLearnMoreURL[]; |
| 584 #endif |
| 585 |
| 581 // "Learn more" URL for the Cloud Print section under Options. | 586 // "Learn more" URL for the Cloud Print section under Options. |
| 582 extern const char kCloudPrintLearnMoreURL[]; | 587 extern const char kCloudPrintLearnMoreURL[]; |
| 583 | 588 |
| 584 // "Learn more" URL for the Cloud Print Preview No Destinations Promotion. | 589 // "Learn more" URL for the Cloud Print Preview No Destinations Promotion. |
| 585 extern const char kCloudPrintNoDestinationsLearnMoreURL[]; | 590 extern const char kCloudPrintNoDestinationsLearnMoreURL[]; |
| 586 | 591 |
| 587 // The URL for the "Learn more" link the the Easy Unlock settings. | 592 // The URL for the "Learn more" link the the Easy Unlock settings. |
| 588 extern const char kEasyUnlockLearnMoreUrl[]; | 593 extern const char kEasyUnlockLearnMoreUrl[]; |
| 589 | 594 |
| 590 // Parameters that get appended to force SafeSearch. | 595 // Parameters that get appended to force SafeSearch. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 extern const char kChooserUsbOverviewURL[]; | 628 extern const char kChooserUsbOverviewURL[]; |
| 624 | 629 |
| 625 #if defined(OS_CHROMEOS) | 630 #if defined(OS_CHROMEOS) |
| 626 // The URL for EOL notification | 631 // The URL for EOL notification |
| 627 extern const char kEolNotificationURL[]; | 632 extern const char kEolNotificationURL[]; |
| 628 #endif | 633 #endif |
| 629 | 634 |
| 630 } // namespace chrome | 635 } // namespace chrome |
| 631 | 636 |
| 632 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 637 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |