| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 extern const char kChromeUISlideshowURL[]; | 84 extern const char kChromeUISlideshowURL[]; |
| 85 extern const char kChromeUISystemInfoURL[]; | 85 extern const char kChromeUISystemInfoURL[]; |
| 86 extern const char kChromeUITermsOemURL[]; | 86 extern const char kChromeUITermsOemURL[]; |
| 87 extern const char kChromeUIUserImageURL[]; | 87 extern const char kChromeUIUserImageURL[]; |
| 88 #endif | 88 #endif |
| 89 | 89 |
| 90 #if defined(FILE_MANAGER_EXTENSION) | 90 #if defined(FILE_MANAGER_EXTENSION) |
| 91 extern const char kChromeUIFileManagerURL[]; | 91 extern const char kChromeUIFileManagerURL[]; |
| 92 #endif | 92 #endif |
| 93 | 93 |
| 94 #if defined(OS_CHROMEOS) || defined(TOUCH_UI) | 94 #if defined(OS_CHROMEOS) || defined(TOUCH_UI) || defined(USE_AURA) |
| 95 extern const char kChromeUICollectedCookiesURL[]; | 95 extern const char kChromeUICollectedCookiesURL[]; |
| 96 extern const char kChromeUIHttpAuthURL[]; | 96 extern const char kChromeUIHttpAuthURL[]; |
| 97 extern const char kChromeUIRepostFormWarningURL[]; | 97 extern const char kChromeUIRepostFormWarningURL[]; |
| 98 #endif | 98 #endif |
| 99 | 99 |
| 100 // chrome components of URLs. Should be kept in sync with the full URLs above. | 100 // chrome components of URLs. Should be kept in sync with the full URLs above. |
| 101 extern const char kChromeUIAboutHost[]; | 101 extern const char kChromeUIAboutHost[]; |
| 102 extern const char kChromeUIAppCacheInternalsHost[]; | 102 extern const char kChromeUIAppCacheInternalsHost[]; |
| 103 extern const char kChromeUIBlankHost[]; | 103 extern const char kChromeUIBlankHost[]; |
| 104 extern const char kChromeUIBlobInternalsHost[]; | 104 extern const char kChromeUIBlobInternalsHost[]; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 extern const char kChromeUINetworkMenu[]; | 205 extern const char kChromeUINetworkMenu[]; |
| 206 | 206 |
| 207 extern const char kEULAPathFormat[]; | 207 extern const char kEULAPathFormat[]; |
| 208 extern const char kOemEulaURLPath[]; | 208 extern const char kOemEulaURLPath[]; |
| 209 #endif | 209 #endif |
| 210 | 210 |
| 211 #if defined(FILE_MANAGER_EXTENSION) | 211 #if defined(FILE_MANAGER_EXTENSION) |
| 212 extern const char kChromeUIFileManagerHost[]; | 212 extern const char kChromeUIFileManagerHost[]; |
| 213 #endif | 213 #endif |
| 214 | 214 |
| 215 #if defined(OS_CHROMEOS) || defined(TOUCH_UI) | 215 #if defined(OS_CHROMEOS) || defined(TOUCH_UI) || defined(USE_AURA) |
| 216 extern const char kChromeUICollectedCookiesHost[]; | 216 extern const char kChromeUICollectedCookiesHost[]; |
| 217 extern const char kChromeUIHttpAuthHost[]; | 217 extern const char kChromeUIHttpAuthHost[]; |
| 218 extern const char kChromeUIRepostFormWarningHost[]; | 218 extern const char kChromeUIRepostFormWarningHost[]; |
| 219 #endif | 219 #endif |
| 220 | 220 |
| 221 // Options sub-pages. | 221 // Options sub-pages. |
| 222 extern const char kAdvancedOptionsSubPage[]; | 222 extern const char kAdvancedOptionsSubPage[]; |
| 223 extern const char kAutofillSubPage[]; | 223 extern const char kAutofillSubPage[]; |
| 224 extern const char kBrowserOptionsSubPage[]; | 224 extern const char kBrowserOptionsSubPage[]; |
| 225 extern const char kClearBrowserDataSubPage[]; | 225 extern const char kClearBrowserDataSubPage[]; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 void RegisterChromeSchemes(); | 294 void RegisterChromeSchemes(); |
| 295 | 295 |
| 296 #if defined(OS_CHROMEOS) | 296 #if defined(OS_CHROMEOS) |
| 297 // "Learn more" URL for the Cloud Print section under Options. | 297 // "Learn more" URL for the Cloud Print section under Options. |
| 298 extern const char kCloudPrintLearnMoreURL[]; | 298 extern const char kCloudPrintLearnMoreURL[]; |
| 299 #endif | 299 #endif |
| 300 | 300 |
| 301 } // namespace chrome | 301 } // namespace chrome |
| 302 | 302 |
| 303 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 303 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |