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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 extern const char kChromeUIKeyboardURL[]; | 77 extern const char kChromeUIKeyboardURL[]; |
78 extern const char kChromeUINewTabURL[]; | 78 extern const char kChromeUINewTabURL[]; |
79 extern const char kChromeUIPluginsURL[]; | 79 extern const char kChromeUIPluginsURL[]; |
80 extern const char kChromeUIPrintURL[]; | 80 extern const char kChromeUIPrintURL[]; |
81 extern const char kChromeUISettingsURL[]; | 81 extern const char kChromeUISettingsURL[]; |
82 extern const char kChromeUITextfieldsURL[]; | 82 extern const char kChromeUITextfieldsURL[]; |
83 | 83 |
84 #if defined(OS_CHROMEOS) | 84 #if defined(OS_CHROMEOS) |
85 extern const char kChromeUIFileBrowseURL[]; | 85 extern const char kChromeUIFileBrowseURL[]; |
86 extern const char kChromeUIImageBurnerURL[]; | 86 extern const char kChromeUIImageBurnerURL[]; |
| 87 extern const char kChromeUIKeyboardOverlayURL[]; |
87 extern const char kChromeUIMediaplayerURL[]; | 88 extern const char kChromeUIMediaplayerURL[]; |
88 extern const char kChromeUIMobileSetupURL[]; | 89 extern const char kChromeUIMobileSetupURL[]; |
89 extern const char kChromeUIRegisterPageURL[]; | 90 extern const char kChromeUIRegisterPageURL[]; |
90 extern const char kChromeUISlideshowURL[]; | 91 extern const char kChromeUISlideshowURL[]; |
91 extern const char kChromeUISystemInfoURL[]; | 92 extern const char kChromeUISystemInfoURL[]; |
92 #endif | 93 #endif |
93 | 94 |
94 // chrome components of URLs. Should be kept in sync with the full URLs | 95 // chrome components of URLs. Should be kept in sync with the full URLs |
95 // above. | 96 // above. |
96 extern const char kChromeUIBookmarksHost[]; | 97 extern const char kChromeUIBookmarksHost[]; |
(...skipping 17 matching lines...) Expand all Loading... |
114 extern const char kChromeUIScreenshotPath[]; | 115 extern const char kChromeUIScreenshotPath[]; |
115 extern const char kChromeUISettingsHost[]; | 116 extern const char kChromeUISettingsHost[]; |
116 extern const char kChromeUISyncResourcesHost[]; | 117 extern const char kChromeUISyncResourcesHost[]; |
117 extern const char kChromeUITextfieldsHost[]; | 118 extern const char kChromeUITextfieldsHost[]; |
118 extern const char kChromeUIThemePath[]; | 119 extern const char kChromeUIThemePath[]; |
119 extern const char kChromeUIThumbnailPath[]; | 120 extern const char kChromeUIThumbnailPath[]; |
120 | 121 |
121 #if defined(OS_CHROMEOS) | 122 #if defined(OS_CHROMEOS) |
122 extern const char kChromeUIFileBrowseHost[]; | 123 extern const char kChromeUIFileBrowseHost[]; |
123 extern const char kChromeUIImageBurnerHost[]; | 124 extern const char kChromeUIImageBurnerHost[]; |
| 125 extern const char kChromeUIKeyboardOverlayHost[]; |
124 extern const char kChromeUIMediaplayerHost[]; | 126 extern const char kChromeUIMediaplayerHost[]; |
125 extern const char kChromeUIMobileSetupHost[]; | 127 extern const char kChromeUIMobileSetupHost[]; |
126 extern const char kChromeUIRegisterPageHost[]; | 128 extern const char kChromeUIRegisterPageHost[]; |
127 extern const char kChromeUISlideshowHost[]; | 129 extern const char kChromeUISlideshowHost[]; |
128 extern const char kChromeUISystemInfoHost[]; | 130 extern const char kChromeUISystemInfoHost[]; |
129 extern const char kChromeUIMenu[]; | 131 extern const char kChromeUIMenu[]; |
130 extern const char kChromeUIWrenchMenu[]; | 132 extern const char kChromeUIWrenchMenu[]; |
131 extern const char kChromeUINetworkMenu[]; | 133 extern const char kChromeUINetworkMenu[]; |
132 #endif | 134 #endif |
133 | 135 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 extern const char kSystemOptionsSubPage[]; | 167 extern const char kSystemOptionsSubPage[]; |
166 #endif | 168 #endif |
167 | 169 |
168 // Call near the beginning of startup to register Chrome's internal URLs that | 170 // Call near the beginning of startup to register Chrome's internal URLs that |
169 // should be parsed as "standard" with the googleurl library. | 171 // should be parsed as "standard" with the googleurl library. |
170 void RegisterChromeSchemes(); | 172 void RegisterChromeSchemes(); |
171 | 173 |
172 } // namespace chrome | 174 } // namespace chrome |
173 | 175 |
174 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 176 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |