| 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 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 extern const char kEasyUnlockLearnMoreUrl[]; | 574 extern const char kEasyUnlockLearnMoreUrl[]; |
| 575 | 575 |
| 576 // Parameters that get appended to force SafeSearch. | 576 // Parameters that get appended to force SafeSearch. |
| 577 extern const char kSafeSearchSafeParameter[]; | 577 extern const char kSafeSearchSafeParameter[]; |
| 578 extern const char kSafeSearchSsuiParameter[]; | 578 extern const char kSafeSearchSsuiParameter[]; |
| 579 | 579 |
| 580 // The URL for the "Learn more" link in the media access infobar. | 580 // The URL for the "Learn more" link in the media access infobar. |
| 581 extern const char kMediaAccessLearnMoreUrl[]; | 581 extern const char kMediaAccessLearnMoreUrl[]; |
| 582 | 582 |
| 583 // The URL for the "Learn more" link in the language settings. | 583 // The URL for the "Learn more" link in the language settings. |
| 584 // TODO(michaelpg): Compile on Chrome OS only when Options is removed. |
| 584 extern const char kLanguageSettingsLearnMoreUrl[]; | 585 extern const char kLanguageSettingsLearnMoreUrl[]; |
| 585 | 586 |
| 586 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) | 587 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 587 extern const char kLinuxWheezyPreciseDeprecationURL[]; | 588 extern const char kLinuxWheezyPreciseDeprecationURL[]; |
| 588 #endif | 589 #endif |
| 589 | 590 |
| 590 #if defined(OS_MACOSX) | 591 #if defined(OS_MACOSX) |
| 591 // The URL for the Mac OS X 10.6/10.7/10.8 deprecation help center article. | 592 // The URL for the Mac OS X 10.6/10.7/10.8 deprecation help center article. |
| 592 extern const char kMac10_678_DeprecationURL[]; | 593 extern const char kMac10_678_DeprecationURL[]; |
| 593 #endif | 594 #endif |
| (...skipping 14 matching lines...) Expand all Loading... |
| 608 extern const char kChooserUsbOverviewURL[]; | 609 extern const char kChooserUsbOverviewURL[]; |
| 609 | 610 |
| 610 #if defined(OS_CHROMEOS) | 611 #if defined(OS_CHROMEOS) |
| 611 // The URL for EOL notification | 612 // The URL for EOL notification |
| 612 extern const char kEolNotificationURL[]; | 613 extern const char kEolNotificationURL[]; |
| 613 #endif | 614 #endif |
| 614 | 615 |
| 615 } // namespace chrome | 616 } // namespace chrome |
| 616 | 617 |
| 617 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 618 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |