| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 extern const char kChromeUIBookmarksHost[]; | 109 extern const char kChromeUIBookmarksHost[]; |
| 110 extern const char kChromeUIBugReportHost[]; | 110 extern const char kChromeUIBugReportHost[]; |
| 111 extern const char kChromeUIConflictsHost[]; | 111 extern const char kChromeUIConflictsHost[]; |
| 112 extern const char kChromeUICrashesHost[]; | 112 extern const char kChromeUICrashesHost[]; |
| 113 extern const char kChromeUIDevToolsHost[]; | 113 extern const char kChromeUIDevToolsHost[]; |
| 114 extern const char kChromeUIDialogHost[]; | 114 extern const char kChromeUIDialogHost[]; |
| 115 extern const char kChromeUIDownloadsHost[]; | 115 extern const char kChromeUIDownloadsHost[]; |
| 116 extern const char kChromeUIExtensionIconHost[]; | 116 extern const char kChromeUIExtensionIconHost[]; |
| 117 extern const char kChromeUIExtensionsHost[]; | 117 extern const char kChromeUIExtensionsHost[]; |
| 118 extern const char kChromeUIFaviconHost[]; | 118 extern const char kChromeUIFaviconHost[]; |
| 119 extern const char kChromeUITouchIconHost[]; |
| 119 extern const char kChromeUIFlagsHost[]; | 120 extern const char kChromeUIFlagsHost[]; |
| 120 extern const char kChromeUIGpuInternalsHost[]; | 121 extern const char kChromeUIGpuInternalsHost[]; |
| 121 extern const char kChromeUIHistory2Host[]; | 122 extern const char kChromeUIHistory2Host[]; |
| 122 extern const char kChromeUIHistoryHost[]; | 123 extern const char kChromeUIHistoryHost[]; |
| 123 extern const char kChromeUIKeyboardHost[]; | 124 extern const char kChromeUIKeyboardHost[]; |
| 124 extern const char kChromeUINetInternalsHost[]; | 125 extern const char kChromeUINetInternalsHost[]; |
| 125 extern const char kChromeUINewTabHost[]; | 126 extern const char kChromeUINewTabHost[]; |
| 126 extern const char kChromeUIPluginsHost[]; | 127 extern const char kChromeUIPluginsHost[]; |
| 127 extern const char kChromeUIPrintHost[]; | 128 extern const char kChromeUIPrintHost[]; |
| 128 extern const char kChromeUIRemotingHost[]; | 129 extern const char kChromeUIRemotingHost[]; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 // The URL for the "Learn more" page for the blocked/outdated plugin infobar. | 226 // The URL for the "Learn more" page for the blocked/outdated plugin infobar. |
| 226 extern const char kOutdatedPluginLearnMoreURL[]; | 227 extern const char kOutdatedPluginLearnMoreURL[]; |
| 227 | 228 |
| 228 // Call near the beginning of startup to register Chrome's internal URLs that | 229 // Call near the beginning of startup to register Chrome's internal URLs that |
| 229 // should be parsed as "standard" with the googleurl library. | 230 // should be parsed as "standard" with the googleurl library. |
| 230 void RegisterChromeSchemes(); | 231 void RegisterChromeSchemes(); |
| 231 | 232 |
| 232 } // namespace chrome | 233 } // namespace chrome |
| 233 | 234 |
| 234 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 235 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |