| 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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 | 481 |
| 482 // Pages under chrome-search. | 482 // Pages under chrome-search. |
| 483 extern const char kChromeSearchLocalNtpHost[]; | 483 extern const char kChromeSearchLocalNtpHost[]; |
| 484 extern const char kChromeSearchLocalNtpUrl[]; | 484 extern const char kChromeSearchLocalNtpUrl[]; |
| 485 extern const char kChromeSearchOnlineNtpHost[]; | 485 extern const char kChromeSearchOnlineNtpHost[]; |
| 486 | 486 |
| 487 // Host and URL for most visited iframes used on the Instant Extended NTP. | 487 // Host and URL for most visited iframes used on the Instant Extended NTP. |
| 488 extern const char kChromeSearchMostVisitedHost[]; | 488 extern const char kChromeSearchMostVisitedHost[]; |
| 489 extern const char kChromeSearchMostVisitedUrl[]; | 489 extern const char kChromeSearchMostVisitedUrl[]; |
| 490 | 490 |
| 491 extern const char kChromeSigninHost[]; |
| 492 |
| 491 #if defined(OS_CHROMEOS) | 493 #if defined(OS_CHROMEOS) |
| 492 extern const char kCrosScheme[]; | 494 extern const char kCrosScheme[]; |
| 493 extern const char kDriveScheme[]; | 495 extern const char kDriveScheme[]; |
| 494 #endif | 496 #endif |
| 495 | 497 |
| 496 // Scheme for the DOM Distiller component. | 498 // Scheme for the DOM Distiller component. |
| 497 extern const char kDomDistillerScheme[]; | 499 extern const char kDomDistillerScheme[]; |
| 498 | 500 |
| 499 // "Learn more" URL for the Cloud Print section under Options. | 501 // "Learn more" URL for the Cloud Print section under Options. |
| 500 extern const char kCloudPrintLearnMoreURL[]; | 502 extern const char kCloudPrintLearnMoreURL[]; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 513 extern const char kLanguageSettingsLearnMoreUrl[]; | 515 extern const char kLanguageSettingsLearnMoreUrl[]; |
| 514 | 516 |
| 515 #if defined(OS_MACOSX) | 517 #if defined(OS_MACOSX) |
| 516 // The URL for the 32-bit Mac deprecation help center article | 518 // The URL for the 32-bit Mac deprecation help center article |
| 517 extern const char kMac32BitDeprecationURL[]; | 519 extern const char kMac32BitDeprecationURL[]; |
| 518 #endif | 520 #endif |
| 519 | 521 |
| 520 } // namespace chrome | 522 } // namespace chrome |
| 521 | 523 |
| 522 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 524 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |