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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 extern const char kChromeUIAboutOSCreditsURL[]; | 70 extern const char kChromeUIAboutOSCreditsURL[]; |
71 extern const char kChromeUIActivationMessage[]; | 71 extern const char kChromeUIActivationMessage[]; |
72 extern const char kChromeUIActiveDownloadsURL[]; | 72 extern const char kChromeUIActiveDownloadsURL[]; |
73 extern const char kChromeUIChooseMobileNetworkURL[]; | 73 extern const char kChromeUIChooseMobileNetworkURL[]; |
74 extern const char kChromeUICollectedCookiesURL[]; | 74 extern const char kChromeUICollectedCookiesURL[]; |
75 extern const char kChromeUIHttpAuthURL[]; | 75 extern const char kChromeUIHttpAuthURL[]; |
76 extern const char kChromeUIImageBurnerURL[]; | 76 extern const char kChromeUIImageBurnerURL[]; |
77 extern const char kChromeUIKeyboardOverlayURL[]; | 77 extern const char kChromeUIKeyboardOverlayURL[]; |
78 extern const char kChromeUIMediaplayerURL[]; | 78 extern const char kChromeUIMediaplayerURL[]; |
79 extern const char kChromeUIMobileSetupURL[]; | 79 extern const char kChromeUIMobileSetupURL[]; |
| 80 extern const char kChromeUIOobeURL[]; |
80 extern const char kChromeUIProxySettingsURL[]; | 81 extern const char kChromeUIProxySettingsURL[]; |
81 extern const char kChromeUIRegisterPageURL[]; | 82 extern const char kChromeUIRegisterPageURL[]; |
82 extern const char kChromeUISlideshowURL[]; | 83 extern const char kChromeUISlideshowURL[]; |
83 extern const char kChromeUISimUnlockURL[]; | 84 extern const char kChromeUISimUnlockURL[]; |
84 extern const char kChromeUISystemInfoURL[]; | 85 extern const char kChromeUISystemInfoURL[]; |
85 extern const char kChromeUIUserImageURL[]; | 86 extern const char kChromeUIUserImageURL[]; |
86 extern const char kChromeUIEnterpriseEnrollmentURL[]; | 87 extern const char kChromeUIEnterpriseEnrollmentURL[]; |
87 #endif | 88 #endif |
88 | 89 |
89 // chrome components of URLs. Should be kept in sync with the full URLs | 90 // chrome components of URLs. Should be kept in sync with the full URLs |
(...skipping 30 matching lines...) Expand all Loading... |
120 #if defined(OS_CHROMEOS) | 121 #if defined(OS_CHROMEOS) |
121 extern const char kChromeUIActiveDownloadsHost[]; | 122 extern const char kChromeUIActiveDownloadsHost[]; |
122 extern const char kChromeUIActivationMessageHost[]; | 123 extern const char kChromeUIActivationMessageHost[]; |
123 extern const char kChromeUIChooseMobileNetworkHost[]; | 124 extern const char kChromeUIChooseMobileNetworkHost[]; |
124 extern const char kChromeUICollectedCookiesHost[]; | 125 extern const char kChromeUICollectedCookiesHost[]; |
125 extern const char kChromeUIHttpAuthHost[]; | 126 extern const char kChromeUIHttpAuthHost[]; |
126 extern const char kChromeUIImageBurnerHost[]; | 127 extern const char kChromeUIImageBurnerHost[]; |
127 extern const char kChromeUIKeyboardOverlayHost[]; | 128 extern const char kChromeUIKeyboardOverlayHost[]; |
128 extern const char kChromeUIMediaplayerHost[]; | 129 extern const char kChromeUIMediaplayerHost[]; |
129 extern const char kChromeUIMobileSetupHost[]; | 130 extern const char kChromeUIMobileSetupHost[]; |
| 131 extern const char kChromeUIOobeHost[]; |
130 extern const char kChromeUIProxySettingsHost[]; | 132 extern const char kChromeUIProxySettingsHost[]; |
131 extern const char kChromeUIRegisterPageHost[]; | 133 extern const char kChromeUIRegisterPageHost[]; |
132 extern const char kChromeUISlideshowHost[]; | 134 extern const char kChromeUISlideshowHost[]; |
133 extern const char kChromeUISimUnlockHost[]; | 135 extern const char kChromeUISimUnlockHost[]; |
134 extern const char kChromeUISystemInfoHost[]; | 136 extern const char kChromeUISystemInfoHost[]; |
135 extern const char kChromeUIMenu[]; | 137 extern const char kChromeUIMenu[]; |
136 extern const char kChromeUIWrenchMenu[]; | 138 extern const char kChromeUIWrenchMenu[]; |
137 extern const char kChromeUINetworkMenu[]; | 139 extern const char kChromeUINetworkMenu[]; |
138 extern const char kChromeUIUserImageHost[]; | 140 extern const char kChromeUIUserImageHost[]; |
139 extern const char kChromeUIEnterpriseEnrollmentHost[]; | 141 extern const char kChromeUIEnterpriseEnrollmentHost[]; |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 // The URL for the "Learn more" page for the blocked plugin infobar. | 217 // The URL for the "Learn more" page for the blocked plugin infobar. |
216 extern const char kBlockedPluginLearnMoreURL[]; | 218 extern const char kBlockedPluginLearnMoreURL[]; |
217 | 219 |
218 // Call near the beginning of startup to register Chrome's internal URLs that | 220 // Call near the beginning of startup to register Chrome's internal URLs that |
219 // should be parsed as "standard" with the googleurl library. | 221 // should be parsed as "standard" with the googleurl library. |
220 void RegisterChromeSchemes(); | 222 void RegisterChromeSchemes(); |
221 | 223 |
222 } // namespace chrome | 224 } // namespace chrome |
223 | 225 |
224 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 226 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |