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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 // coming from a blessed Instant process, and deny the request. | 422 // coming from a blessed Instant process, and deny the request. |
423 extern const char kChromeSearchScheme[]; | 423 extern const char kChromeSearchScheme[]; |
424 | 424 |
425 // Pages under chrome-search. | 425 // Pages under chrome-search. |
426 extern const char kChromeSearchLocalNtpHost[]; | 426 extern const char kChromeSearchLocalNtpHost[]; |
427 extern const char kChromeSearchLocalNtpUrl[]; | 427 extern const char kChromeSearchLocalNtpUrl[]; |
428 extern const char kChromeSearchLocalGoogleNtpUrl[]; | 428 extern const char kChromeSearchLocalGoogleNtpUrl[]; |
429 | 429 |
430 // Host for search suggestions iframes. | 430 // Host for search suggestions iframes. |
431 extern const char kChromeSearchSuggestionHost[]; | 431 extern const char kChromeSearchSuggestionHost[]; |
| 432 extern const char kChromeSearchSuggestionUrl[]; |
432 | 433 |
433 #if defined(OS_CHROMEOS) | 434 #if defined(OS_CHROMEOS) |
434 extern const char kCrosScheme[]; | 435 extern const char kCrosScheme[]; |
435 extern const char kDriveScheme[]; | 436 extern const char kDriveScheme[]; |
436 | 437 |
437 // "Learn more" URL for the Cloud Print section under Options. | 438 // "Learn more" URL for the Cloud Print section under Options. |
438 extern const char kCloudPrintLearnMoreURL[]; | 439 extern const char kCloudPrintLearnMoreURL[]; |
439 #endif | 440 #endif |
440 | 441 |
441 // Parameters that get appended to force SafeSearch. | 442 // Parameters that get appended to force SafeSearch. |
442 extern const char kSafeSearchSafeParameter[]; | 443 extern const char kSafeSearchSafeParameter[]; |
443 extern const char kSafeSearchSsuiParameter[]; | 444 extern const char kSafeSearchSsuiParameter[]; |
444 | 445 |
445 // The URL for the "Learn more" link in the media access infobar. | 446 // The URL for the "Learn more" link in the media access infobar. |
446 extern const char kMediaAccessLearnMoreUrl[]; | 447 extern const char kMediaAccessLearnMoreUrl[]; |
447 | 448 |
448 } // namespace chrome | 449 } // namespace chrome |
449 | 450 |
450 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 451 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |