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 <string> | 10 #include <string> |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 extern const char kChromeSearchLocalNtpHost[]; | 513 extern const char kChromeSearchLocalNtpHost[]; |
514 extern const char kChromeSearchLocalNtpUrl[]; | 514 extern const char kChromeSearchLocalNtpUrl[]; |
515 extern const char kChromeSearchRemoteNtpHost[]; | 515 extern const char kChromeSearchRemoteNtpHost[]; |
516 | 516 |
517 // Host and URL for most visited iframes used on the Instant Extended NTP. | 517 // Host and URL for most visited iframes used on the Instant Extended NTP. |
518 extern const char kChromeSearchMostVisitedHost[]; | 518 extern const char kChromeSearchMostVisitedHost[]; |
519 extern const char kChromeSearchMostVisitedUrl[]; | 519 extern const char kChromeSearchMostVisitedUrl[]; |
520 | 520 |
521 #if defined(OS_CHROMEOS) | 521 #if defined(OS_CHROMEOS) |
522 extern const char kCrosScheme[]; | 522 extern const char kCrosScheme[]; |
523 extern const char kDriveScheme[]; | 523 extern const char kExternalFileScheme[]; |
524 #endif | 524 #endif |
525 | 525 |
526 // "Learn more" URL for the Cloud Print section under Options. | 526 // "Learn more" URL for the Cloud Print section under Options. |
527 extern const char kCloudPrintLearnMoreURL[]; | 527 extern const char kCloudPrintLearnMoreURL[]; |
528 | 528 |
529 // "Learn more" URL for the Cloud Print Preview No Destinations Promotion. | 529 // "Learn more" URL for the Cloud Print Preview No Destinations Promotion. |
530 extern const char kCloudPrintNoDestinationsLearnMoreURL[]; | 530 extern const char kCloudPrintNoDestinationsLearnMoreURL[]; |
531 | 531 |
532 // Parameters that get appended to force SafeSearch. | 532 // Parameters that get appended to force SafeSearch. |
533 extern const char kSafeSearchSafeParameter[]; | 533 extern const char kSafeSearchSafeParameter[]; |
534 extern const char kSafeSearchSsuiParameter[]; | 534 extern const char kSafeSearchSsuiParameter[]; |
535 | 535 |
536 // The URL for the "Learn more" link in the media access infobar. | 536 // The URL for the "Learn more" link in the media access infobar. |
537 extern const char kMediaAccessLearnMoreUrl[]; | 537 extern const char kMediaAccessLearnMoreUrl[]; |
538 | 538 |
539 // The URL for the "Learn more" link in the language settings. | 539 // The URL for the "Learn more" link in the language settings. |
540 extern const char kLanguageSettingsLearnMoreUrl[]; | 540 extern const char kLanguageSettingsLearnMoreUrl[]; |
541 | 541 |
542 #if defined(OS_MACOSX) | 542 #if defined(OS_MACOSX) |
543 // The URL for the 32-bit Mac deprecation help center article | 543 // The URL for the 32-bit Mac deprecation help center article |
544 extern const char kMac32BitDeprecationURL[]; | 544 extern const char kMac32BitDeprecationURL[]; |
545 #endif | 545 #endif |
546 | 546 |
547 // The URL for the "Learn more" link the the Easy Unlock settings. | 547 // The URL for the "Learn more" link the the Easy Unlock settings. |
548 extern const char kEasyUnlockLearnMoreUrl[]; | 548 extern const char kEasyUnlockLearnMoreUrl[]; |
549 | 549 |
550 } // namespace chrome | 550 } // namespace chrome |
551 | 551 |
552 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 552 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |