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 "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 extern const char kChromeSearchScheme[]; | 428 extern const char kChromeSearchScheme[]; |
429 | 429 |
430 // The local omnibox host and pages under chrome-search. | 430 // The local omnibox host and pages under chrome-search. |
431 extern const char kChromeSearchLocalOmniboxPopupHost[]; | 431 extern const char kChromeSearchLocalOmniboxPopupHost[]; |
432 extern const char kChromeSearchLocalOmniboxPopupURL[]; | 432 extern const char kChromeSearchLocalOmniboxPopupURL[]; |
433 extern const char kChromeSearchLocalNtpHost[]; | 433 extern const char kChromeSearchLocalNtpHost[]; |
434 extern const char kChromeSearchLocalNtpUrl[]; | 434 extern const char kChromeSearchLocalNtpUrl[]; |
435 | 435 |
436 // Host for search suggestions iframes. | 436 // Host for search suggestions iframes. |
437 extern const char kChromeSearchSuggestionHost[]; | 437 extern const char kChromeSearchSuggestionHost[]; |
| 438 extern const char kChromeSearchSuggestionURL[]; |
438 | 439 |
439 #if defined(OS_CHROMEOS) | 440 #if defined(OS_CHROMEOS) |
440 extern const char kCrosScheme[]; | 441 extern const char kCrosScheme[]; |
441 extern const char kDriveScheme[]; | 442 extern const char kDriveScheme[]; |
442 | 443 |
443 // "Learn more" URL for the Cloud Print section under Options. | 444 // "Learn more" URL for the Cloud Print section under Options. |
444 extern const char kCloudPrintLearnMoreURL[]; | 445 extern const char kCloudPrintLearnMoreURL[]; |
445 #endif | 446 #endif |
446 | 447 |
447 // Parameters that get appended to force SafeSearch. | 448 // Parameters that get appended to force SafeSearch. |
448 extern const char kSafeSearchSafeParameter[]; | 449 extern const char kSafeSearchSafeParameter[]; |
449 extern const char kSafeSearchSsuiParameter[]; | 450 extern const char kSafeSearchSsuiParameter[]; |
450 | 451 |
451 // The URL for the "Learn more" link in the media access infobar. | 452 // The URL for the "Learn more" link in the media access infobar. |
452 extern const char kMediaAccessLearnMoreUrl[]; | 453 extern const char kMediaAccessLearnMoreUrl[]; |
453 | 454 |
454 } // namespace chrome | 455 } // namespace chrome |
455 | 456 |
456 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 457 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |