| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 #endif | 132 #endif |
| 133 | 133 |
| 134 #if defined(ENABLE_WEBRTC) | 134 #if defined(ENABLE_WEBRTC) |
| 135 extern const char kChromeUIWebRtcLogsURL[]; | 135 extern const char kChromeUIWebRtcLogsURL[]; |
| 136 #endif | 136 #endif |
| 137 | 137 |
| 138 #if defined(ENABLE_MEDIA_ROUTER) | 138 #if defined(ENABLE_MEDIA_ROUTER) |
| 139 extern const char kChromeUIMediaRouterURL[]; | 139 extern const char kChromeUIMediaRouterURL[]; |
| 140 #endif | 140 #endif |
| 141 | 141 |
| 142 #if defined(OS_WIN) || defined(OS_CHROMEOS) | 142 #if defined(OS_WIN) || defined(OS_CHROMEOS) || defined(OS_LINUX) |
| 143 extern const char kChromeUIDiscardsHost[]; | 143 extern const char kChromeUIDiscardsHost[]; |
| 144 extern const char kChromeUIDiscardsURL[]; | 144 extern const char kChromeUIDiscardsURL[]; |
| 145 #endif | 145 #endif |
| 146 | 146 |
| 147 // chrome components of URLs. Should be kept in sync with the full URLs above. | 147 // chrome components of URLs. Should be kept in sync with the full URLs above. |
| 148 extern const char kChromeUIAboutHost[]; | 148 extern const char kChromeUIAboutHost[]; |
| 149 extern const char kChromeUIAboutPageFrameHost[]; | 149 extern const char kChromeUIAboutPageFrameHost[]; |
| 150 extern const char kChromeUIBlankHost[]; | 150 extern const char kChromeUIBlankHost[]; |
| 151 extern const char kChromeUIAppLauncherPageHost[]; | 151 extern const char kChromeUIAppLauncherPageHost[]; |
| 152 extern const char kChromeUIAppListStartPageHost[]; | 152 extern const char kChromeUIAppListStartPageHost[]; |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 extern const char kLanguageSettingsLearnMoreUrl[]; | 542 extern const char kLanguageSettingsLearnMoreUrl[]; |
| 543 | 543 |
| 544 #if defined(OS_MACOSX) | 544 #if defined(OS_MACOSX) |
| 545 // The URL for the 32-bit Mac deprecation help center article | 545 // The URL for the 32-bit Mac deprecation help center article |
| 546 extern const char kMac32BitDeprecationURL[]; | 546 extern const char kMac32BitDeprecationURL[]; |
| 547 #endif | 547 #endif |
| 548 | 548 |
| 549 // The URL for the "Learn more" link the the Easy Unlock settings. | 549 // The URL for the "Learn more" link the the Easy Unlock settings. |
| 550 extern const char kEasyUnlockLearnMoreUrl[]; | 550 extern const char kEasyUnlockLearnMoreUrl[]; |
| 551 | 551 |
| 552 #if defined(OS_WIN) || defined(OS_CHROMEOS) | 552 #if defined(OS_WIN) || defined(OS_CHROMEOS) || defined(OS_LINUX) |
| 553 extern const char kChromeUIDiscardsHost[]; | 553 extern const char kChromeUIDiscardsHost[]; |
| 554 extern const char kChromeUIDiscardsURL[]; | 554 extern const char kChromeUIDiscardsURL[]; |
| 555 #endif | 555 #endif |
| 556 | 556 |
| 557 } // namespace chrome | 557 } // namespace chrome |
| 558 | 558 |
| 559 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 559 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |