| 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 <string> | 10 #include <string> |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 extern const char kChromeUIOSCreditsURL[]; | 106 extern const char kChromeUIOSCreditsURL[]; |
| 107 extern const char kChromeUIProxySettingsURL[]; | 107 extern const char kChromeUIProxySettingsURL[]; |
| 108 extern const char kChromeUISimUnlockURL[]; | 108 extern const char kChromeUISimUnlockURL[]; |
| 109 extern const char kChromeUISlideshowURL[]; | 109 extern const char kChromeUISlideshowURL[]; |
| 110 extern const char kChromeUISlowURL[]; | 110 extern const char kChromeUISlowURL[]; |
| 111 extern const char kChromeUISystemInfoURL[]; | 111 extern const char kChromeUISystemInfoURL[]; |
| 112 extern const char kChromeUITermsOemURL[]; | 112 extern const char kChromeUITermsOemURL[]; |
| 113 extern const char kChromeUIUserImageURL[]; | 113 extern const char kChromeUIUserImageURL[]; |
| 114 #endif | 114 #endif |
| 115 | 115 |
| 116 #if defined(FILE_MANAGER_EXTENSION) | |
| 117 extern const char kChromeUIFileManagerURL[]; | |
| 118 #endif | |
| 119 | |
| 120 #if defined(USE_AURA) | 116 #if defined(USE_AURA) |
| 121 extern const char kChromeUIGestureConfigURL[]; | 117 extern const char kChromeUIGestureConfigURL[]; |
| 122 extern const char kChromeUIGestureConfigHost[]; | 118 extern const char kChromeUIGestureConfigHost[]; |
| 123 extern const char kChromeUISalsaURL[]; | 119 extern const char kChromeUISalsaURL[]; |
| 124 extern const char kChromeUISalsaHost[]; | 120 extern const char kChromeUISalsaHost[]; |
| 125 #endif | 121 #endif |
| 126 | 122 |
| 127 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 123 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
| 128 extern const char kChromeUITabModalConfirmDialogURL[]; | 124 extern const char kChromeUITabModalConfirmDialogURL[]; |
| 129 #endif | 125 #endif |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 | 264 |
| 269 extern const char kChromeUIMenu[]; | 265 extern const char kChromeUIMenu[]; |
| 270 extern const char kChromeUINetworkMenu[]; | 266 extern const char kChromeUINetworkMenu[]; |
| 271 extern const char kChromeUIWrenchMenu[]; | 267 extern const char kChromeUIWrenchMenu[]; |
| 272 | 268 |
| 273 extern const char kEULAPathFormat[]; | 269 extern const char kEULAPathFormat[]; |
| 274 extern const char kOemEulaURLPath[]; | 270 extern const char kOemEulaURLPath[]; |
| 275 extern const char kOnlineEulaURLPath[]; | 271 extern const char kOnlineEulaURLPath[]; |
| 276 #endif | 272 #endif |
| 277 | 273 |
| 278 #if defined(FILE_MANAGER_EXTENSION) | |
| 279 extern const char kChromeUIFileManagerHost[]; | |
| 280 #endif | |
| 281 | |
| 282 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 274 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
| 283 extern const char kChromeUITabModalConfirmDialogHost[]; | 275 extern const char kChromeUITabModalConfirmDialogHost[]; |
| 284 #endif | 276 #endif |
| 285 | 277 |
| 286 #if defined(ENABLE_WEBRTC) | 278 #if defined(ENABLE_WEBRTC) |
| 287 extern const char kChromeUIWebRtcLogsHost[]; | 279 extern const char kChromeUIWebRtcLogsHost[]; |
| 288 #endif | 280 #endif |
| 289 | 281 |
| 290 // Options sub-pages. | 282 // Options sub-pages. |
| 291 extern const char kAutofillSubPage[]; | 283 extern const char kAutofillSubPage[]; |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 // Parameters that get appended to force SafeSearch. | 490 // Parameters that get appended to force SafeSearch. |
| 499 extern const char kSafeSearchSafeParameter[]; | 491 extern const char kSafeSearchSafeParameter[]; |
| 500 extern const char kSafeSearchSsuiParameter[]; | 492 extern const char kSafeSearchSsuiParameter[]; |
| 501 | 493 |
| 502 // The URL for the "Learn more" link in the media access infobar. | 494 // The URL for the "Learn more" link in the media access infobar. |
| 503 extern const char kMediaAccessLearnMoreUrl[]; | 495 extern const char kMediaAccessLearnMoreUrl[]; |
| 504 | 496 |
| 505 } // namespace chrome | 497 } // namespace chrome |
| 506 | 498 |
| 507 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 499 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |