| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 extern const char kChromeUIIdentityInternalsHost[]; | 192 extern const char kChromeUIIdentityInternalsHost[]; |
| 193 extern const char kChromeUIInspectHost[]; | 193 extern const char kChromeUIInspectHost[]; |
| 194 extern const char kChromeUIInstantHost[]; | 194 extern const char kChromeUIInstantHost[]; |
| 195 extern const char kChromeUIInterstitialHost[]; | 195 extern const char kChromeUIInterstitialHost[]; |
| 196 extern const char kChromeUIInvalidationsHost[]; | 196 extern const char kChromeUIInvalidationsHost[]; |
| 197 extern const char kChromeUIKillHost[]; | 197 extern const char kChromeUIKillHost[]; |
| 198 extern const char kChromeUILargeIconHost[]; | 198 extern const char kChromeUILargeIconHost[]; |
| 199 extern const char kChromeUILocalStateHost[]; | 199 extern const char kChromeUILocalStateHost[]; |
| 200 extern const char kChromeUIMdPolicyHost[]; | 200 extern const char kChromeUIMdPolicyHost[]; |
| 201 extern const char kChromeUIMdSettingsHost[]; | 201 extern const char kChromeUIMdSettingsHost[]; |
| 202 extern const char kChromeUIMemoryExhaustHost[]; |
| 202 extern const char kChromeUINaClHost[]; | 203 extern const char kChromeUINaClHost[]; |
| 203 extern const char kChromeUINetExportHost[]; | 204 extern const char kChromeUINetExportHost[]; |
| 204 extern const char kChromeUINetInternalsHost[]; | 205 extern const char kChromeUINetInternalsHost[]; |
| 205 extern const char kChromeUINewTabHost[]; | 206 extern const char kChromeUINewTabHost[]; |
| 206 extern const char kChromeUIOfflineInternalsHost[]; | 207 extern const char kChromeUIOfflineInternalsHost[]; |
| 207 extern const char kChromeUIOmniboxHost[]; | 208 extern const char kChromeUIOmniboxHost[]; |
| 208 extern const char kChromeUIPluginsHost[]; | 209 extern const char kChromeUIPluginsHost[]; |
| 209 extern const char kChromeUIComponentsHost[]; | 210 extern const char kChromeUIComponentsHost[]; |
| 210 extern const char kChromeUIPolicyHost[]; | 211 extern const char kChromeUIPolicyHost[]; |
| 211 extern const char kChromeUIProfileSigninConfirmationHost[]; | 212 extern const char kChromeUIProfileSigninConfirmationHost[]; |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 extern const char kChooserUsbOverviewURL[]; | 594 extern const char kChooserUsbOverviewURL[]; |
| 594 | 595 |
| 595 #if defined(OS_CHROMEOS) | 596 #if defined(OS_CHROMEOS) |
| 596 // The URL for EOL notification | 597 // The URL for EOL notification |
| 597 extern const char kEolNotificationURL[]; | 598 extern const char kEolNotificationURL[]; |
| 598 #endif | 599 #endif |
| 599 | 600 |
| 600 } // namespace chrome | 601 } // namespace chrome |
| 601 | 602 |
| 602 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 603 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |