| 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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 extern const char kChromeSearchLocalGoogleNtpUrl[]; | 432 extern const char kChromeSearchLocalGoogleNtpUrl[]; |
| 433 | 433 |
| 434 // Host for search suggestions iframes. | 434 // Host for search suggestions iframes. |
| 435 extern const char kChromeSearchSuggestionHost[]; | 435 extern const char kChromeSearchSuggestionHost[]; |
| 436 extern const char kChromeSearchSuggestionUrl[]; | 436 extern const char kChromeSearchSuggestionUrl[]; |
| 437 | 437 |
| 438 // Host and URL for most visited iframes used on the Instant Extended NTP. | 438 // Host and URL for most visited iframes used on the Instant Extended NTP. |
| 439 extern const char kChromeSearchMostVisitedHost[]; | 439 extern const char kChromeSearchMostVisitedHost[]; |
| 440 extern const char kChromeSearchMostVisitedUrl[]; | 440 extern const char kChromeSearchMostVisitedUrl[]; |
| 441 | 441 |
| 442 // URL used to indicate that Chrome Search resource load request was invalid. |
| 443 extern const char kChromeSearchInvalidRequestUrl[]; |
| 444 |
| 442 #if defined(OS_CHROMEOS) | 445 #if defined(OS_CHROMEOS) |
| 443 extern const char kCrosScheme[]; | 446 extern const char kCrosScheme[]; |
| 444 extern const char kDriveScheme[]; | 447 extern const char kDriveScheme[]; |
| 445 | 448 |
| 446 // "Learn more" URL for the Cloud Print section under Options. | 449 // "Learn more" URL for the Cloud Print section under Options. |
| 447 extern const char kCloudPrintLearnMoreURL[]; | 450 extern const char kCloudPrintLearnMoreURL[]; |
| 448 #endif | 451 #endif |
| 449 | 452 |
| 450 // Parameters that get appended to force SafeSearch. | 453 // Parameters that get appended to force SafeSearch. |
| 451 extern const char kSafeSearchSafeParameter[]; | 454 extern const char kSafeSearchSafeParameter[]; |
| 452 extern const char kSafeSearchSsuiParameter[]; | 455 extern const char kSafeSearchSsuiParameter[]; |
| 453 | 456 |
| 454 // The URL for the "Learn more" link in the media access infobar. | 457 // The URL for the "Learn more" link in the media access infobar. |
| 455 extern const char kMediaAccessLearnMoreUrl[]; | 458 extern const char kMediaAccessLearnMoreUrl[]; |
| 456 | 459 |
| 457 } // namespace chrome | 460 } // namespace chrome |
| 458 | 461 |
| 459 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 462 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |