OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 #if defined(OS_CHROMEOS) | 117 #if defined(OS_CHROMEOS) |
118 extern const char kChromeUIFileBrowseHost[]; | 118 extern const char kChromeUIFileBrowseHost[]; |
119 extern const char kChromeUIImageBurnerHost[]; | 119 extern const char kChromeUIImageBurnerHost[]; |
120 extern const char kChromeUIMediaplayerHost[]; | 120 extern const char kChromeUIMediaplayerHost[]; |
121 extern const char kChromeUIMobileSetupHost[]; | 121 extern const char kChromeUIMobileSetupHost[]; |
122 extern const char kChromeUIRegisterPageHost[]; | 122 extern const char kChromeUIRegisterPageHost[]; |
123 extern const char kChromeUISlideshowHost[]; | 123 extern const char kChromeUISlideshowHost[]; |
124 extern const char kChromeUISystemInfoHost[]; | 124 extern const char kChromeUISystemInfoHost[]; |
125 extern const char kChromeUIMenu[]; | 125 extern const char kChromeUIMenu[]; |
126 extern const char kChromeUIWrenchMenu[]; | 126 extern const char kChromeUIWrenchMenu[]; |
| 127 extern const char kChromeUINetworkMenu[]; |
127 #endif | 128 #endif |
128 | 129 |
129 // AppCache related URL. | 130 // AppCache related URL. |
130 extern const char kAppCacheViewInternalsURL[]; | 131 extern const char kAppCacheViewInternalsURL[]; |
131 | 132 |
132 // Blob related URL. | 133 // Blob related URL. |
133 extern const char kBlobViewInternalsURL[]; | 134 extern const char kBlobViewInternalsURL[]; |
134 | 135 |
135 // Cloud Print dialog URL components. | 136 // Cloud Print dialog URL components. |
136 extern const char kCloudPrintResourcesURL[]; | 137 extern const char kCloudPrintResourcesURL[]; |
(...skipping 19 matching lines...) Expand all Loading... |
156 extern const char kInternetOptionsSubPage[]; | 157 extern const char kInternetOptionsSubPage[]; |
157 #endif | 158 #endif |
158 | 159 |
159 // Call near the beginning of startup to register Chrome's internal URLs that | 160 // Call near the beginning of startup to register Chrome's internal URLs that |
160 // should be parsed as "standard" with the googleurl library. | 161 // should be parsed as "standard" with the googleurl library. |
161 void RegisterChromeSchemes(); | 162 void RegisterChromeSchemes(); |
162 | 163 |
163 } // namespace chrome | 164 } // namespace chrome |
164 | 165 |
165 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 166 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |