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 <stddef.h> | 10 #include <stddef.h> |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
187 extern const char kChromeUIIdentityInternalsHost[]; | 187 extern const char kChromeUIIdentityInternalsHost[]; |
188 extern const char kChromeUIInspectHost[]; | 188 extern const char kChromeUIInspectHost[]; |
189 extern const char kChromeUIInstantHost[]; | 189 extern const char kChromeUIInstantHost[]; |
190 extern const char kChromeUIInterstitialHost[]; | 190 extern const char kChromeUIInterstitialHost[]; |
191 extern const char kChromeUIInvalidationsHost[]; | 191 extern const char kChromeUIInvalidationsHost[]; |
192 extern const char kChromeUIKillHost[]; | 192 extern const char kChromeUIKillHost[]; |
193 extern const char kChromeUILargeIconHost[]; | 193 extern const char kChromeUILargeIconHost[]; |
194 extern const char kChromeUILocalStateHost[]; | 194 extern const char kChromeUILocalStateHost[]; |
195 extern const char kChromeUIMdPolicyHost[]; | 195 extern const char kChromeUIMdPolicyHost[]; |
196 extern const char kChromeUIMdSettingsHost[]; | 196 extern const char kChromeUIMdSettingsHost[]; |
197 extern const char kChromeUIMemoryExhaustHost[]; | |
jochen (gone - plz use gerrit)
2016/07/18 11:44:34
shouldn't that be defined alongside the URL in con
Will Harris
2016/07/18 18:33:56
Done.
| |
197 extern const char kChromeUINaClHost[]; | 198 extern const char kChromeUINaClHost[]; |
198 extern const char kChromeUINetExportHost[]; | 199 extern const char kChromeUINetExportHost[]; |
199 extern const char kChromeUINetInternalsHost[]; | 200 extern const char kChromeUINetInternalsHost[]; |
200 extern const char kChromeUINewTabHost[]; | 201 extern const char kChromeUINewTabHost[]; |
201 extern const char kChromeUIOfflineInternalsHost[]; | 202 extern const char kChromeUIOfflineInternalsHost[]; |
202 extern const char kChromeUIOmniboxHost[]; | 203 extern const char kChromeUIOmniboxHost[]; |
203 extern const char kChromeUIPluginsHost[]; | 204 extern const char kChromeUIPluginsHost[]; |
204 extern const char kChromeUIComponentsHost[]; | 205 extern const char kChromeUIComponentsHost[]; |
205 extern const char kChromeUIPolicyHost[]; | 206 extern const char kChromeUIPolicyHost[]; |
206 extern const char kChromeUIProfileSigninConfirmationHost[]; | 207 extern const char kChromeUIProfileSigninConfirmationHost[]; |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
588 extern const char kChooserUsbOverviewURL[]; | 589 extern const char kChooserUsbOverviewURL[]; |
589 | 590 |
590 #if defined(OS_CHROMEOS) | 591 #if defined(OS_CHROMEOS) |
591 // The URL for EOL notification | 592 // The URL for EOL notification |
592 extern const char kEolNotificationURL[]; | 593 extern const char kEolNotificationURL[]; |
593 #endif | 594 #endif |
594 | 595 |
595 } // namespace chrome | 596 } // namespace chrome |
596 | 597 |
597 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 598 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |