| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 extern const char kChromeUICreditsHost[]; | 152 extern const char kChromeUICreditsHost[]; |
| 153 extern const char kChromeUIDefaultHost[]; | 153 extern const char kChromeUIDefaultHost[]; |
| 154 extern const char kChromeUIDevicesHost[]; | 154 extern const char kChromeUIDevicesHost[]; |
| 155 extern const char kChromeUIDevToolsHost[]; | 155 extern const char kChromeUIDevToolsHost[]; |
| 156 extern const char kChromeUIDevToolsBundledPath[]; | 156 extern const char kChromeUIDevToolsBundledPath[]; |
| 157 extern const char kChromeUIDevToolsRemotePath[]; | 157 extern const char kChromeUIDevToolsRemotePath[]; |
| 158 extern const char kChromeUIDNSHost[]; | 158 extern const char kChromeUIDNSHost[]; |
| 159 extern const char kChromeUIDownloadsHost[]; | 159 extern const char kChromeUIDownloadsHost[]; |
| 160 extern const char kChromeUIDriveInternalsHost[]; | 160 extern const char kChromeUIDriveInternalsHost[]; |
| 161 extern const char kChromeUIEditSearchEngineDialogHost[]; | 161 extern const char kChromeUIEditSearchEngineDialogHost[]; |
| 162 extern const char kChromeUIEnhancedBookmarksHost[]; | |
| 163 extern const char kChromeUIExtensionIconHost[]; | 162 extern const char kChromeUIExtensionIconHost[]; |
| 164 extern const char kChromeUIExtensionInfoHost[]; | 163 extern const char kChromeUIExtensionInfoHost[]; |
| 165 extern const char kChromeUIExtensionsFrameHost[]; | 164 extern const char kChromeUIExtensionsFrameHost[]; |
| 166 extern const char kChromeUIExtensionsHost[]; | 165 extern const char kChromeUIExtensionsHost[]; |
| 167 extern const char kChromeUIFaviconHost[]; | 166 extern const char kChromeUIFaviconHost[]; |
| 168 extern const char kChromeUIFeedbackHost[]; | 167 extern const char kChromeUIFeedbackHost[]; |
| 169 extern const char kChromeUIFlagsHost[]; | 168 extern const char kChromeUIFlagsHost[]; |
| 170 extern const char kChromeUIFlashHost[]; | 169 extern const char kChromeUIFlashHost[]; |
| 171 extern const char kChromeUIGCMInternalsHost[]; | 170 extern const char kChromeUIGCMInternalsHost[]; |
| 172 extern const char kChromeUIHelpFrameHost[]; | 171 extern const char kChromeUIHelpFrameHost[]; |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 extern const char kLanguageSettingsLearnMoreUrl[]; | 524 extern const char kLanguageSettingsLearnMoreUrl[]; |
| 526 | 525 |
| 527 #if defined(OS_MACOSX) | 526 #if defined(OS_MACOSX) |
| 528 // The URL for the 32-bit Mac deprecation help center article | 527 // The URL for the 32-bit Mac deprecation help center article |
| 529 extern const char kMac32BitDeprecationURL[]; | 528 extern const char kMac32BitDeprecationURL[]; |
| 530 #endif | 529 #endif |
| 531 | 530 |
| 532 } // namespace chrome | 531 } // namespace chrome |
| 533 | 532 |
| 534 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 533 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |