| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 extern const char kChromeUIUserImageURL[]; | 89 extern const char kChromeUIUserImageURL[]; |
| 90 #endif | 90 #endif |
| 91 | 91 |
| 92 #if defined(FILE_MANAGER_EXTENSION) | 92 #if defined(FILE_MANAGER_EXTENSION) |
| 93 extern const char kChromeUIFileManagerURL[]; | 93 extern const char kChromeUIFileManagerURL[]; |
| 94 #endif | 94 #endif |
| 95 | 95 |
| 96 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 96 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
| 97 extern const char kChromeUICollectedCookiesURL[]; | 97 extern const char kChromeUICollectedCookiesURL[]; |
| 98 extern const char kChromeUIHttpAuthURL[]; | 98 extern const char kChromeUIHttpAuthURL[]; |
| 99 extern const char kChromeUIRepostFormWarningURL[]; | 99 extern const char kChromeUITabModalDialogURL[]; |
| 100 #endif | 100 #endif |
| 101 | 101 |
| 102 #if defined(USE_AURA) | 102 #if defined(USE_AURA) |
| 103 extern const char kChromeUIAppListURL[]; | 103 extern const char kChromeUIAppListURL[]; |
| 104 #endif | 104 #endif |
| 105 | 105 |
| 106 // chrome components of URLs. Should be kept in sync with the full URLs above. | 106 // chrome components of URLs. Should be kept in sync with the full URLs above. |
| 107 extern const char kChromeUIAboutHost[]; | 107 extern const char kChromeUIAboutHost[]; |
| 108 extern const char kChromeUIAppCacheInternalsHost[]; | 108 extern const char kChromeUIAppCacheInternalsHost[]; |
| 109 extern const char kChromeUIBlankHost[]; | 109 extern const char kChromeUIBlankHost[]; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 extern const char kOemEulaURLPath[]; | 215 extern const char kOemEulaURLPath[]; |
| 216 #endif | 216 #endif |
| 217 | 217 |
| 218 #if defined(FILE_MANAGER_EXTENSION) | 218 #if defined(FILE_MANAGER_EXTENSION) |
| 219 extern const char kChromeUIFileManagerHost[]; | 219 extern const char kChromeUIFileManagerHost[]; |
| 220 #endif | 220 #endif |
| 221 | 221 |
| 222 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 222 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
| 223 extern const char kChromeUICollectedCookiesHost[]; | 223 extern const char kChromeUICollectedCookiesHost[]; |
| 224 extern const char kChromeUIHttpAuthHost[]; | 224 extern const char kChromeUIHttpAuthHost[]; |
| 225 extern const char kChromeUIRepostFormWarningHost[]; | 225 extern const char kChromeUITabModalDialogHost[]; |
| 226 #endif | 226 #endif |
| 227 | 227 |
| 228 #if defined(USE_AURA) | 228 #if defined(USE_AURA) |
| 229 extern const char kChromeUIAppListHost[]; | 229 extern const char kChromeUIAppListHost[]; |
| 230 #endif | 230 #endif |
| 231 | 231 |
| 232 // Options sub-pages. | 232 // Options sub-pages. |
| 233 extern const char kAdvancedOptionsSubPage[]; | 233 extern const char kAdvancedOptionsSubPage[]; |
| 234 extern const char kAutofillSubPage[]; | 234 extern const char kAutofillSubPage[]; |
| 235 extern const char kBrowserOptionsSubPage[]; | 235 extern const char kBrowserOptionsSubPage[]; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 void RegisterChromeSchemes(); | 308 void RegisterChromeSchemes(); |
| 309 | 309 |
| 310 #if defined(OS_CHROMEOS) | 310 #if defined(OS_CHROMEOS) |
| 311 // "Learn more" URL for the Cloud Print section under Options. | 311 // "Learn more" URL for the Cloud Print section under Options. |
| 312 extern const char kCloudPrintLearnMoreURL[]; | 312 extern const char kCloudPrintLearnMoreURL[]; |
| 313 #endif | 313 #endif |
| 314 | 314 |
| 315 } // namespace chrome | 315 } // namespace chrome |
| 316 | 316 |
| 317 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 317 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |