| 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 "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 extern const char kChromeUISlideshowHost[]; | 242 extern const char kChromeUISlideshowHost[]; |
| 243 extern const char kChromeUISystemInfoHost[]; | 243 extern const char kChromeUISystemInfoHost[]; |
| 244 extern const char kChromeUIUserImageHost[]; | 244 extern const char kChromeUIUserImageHost[]; |
| 245 | 245 |
| 246 extern const char kChromeUIMenu[]; | 246 extern const char kChromeUIMenu[]; |
| 247 extern const char kChromeUINetworkMenu[]; | 247 extern const char kChromeUINetworkMenu[]; |
| 248 extern const char kChromeUIWrenchMenu[]; | 248 extern const char kChromeUIWrenchMenu[]; |
| 249 | 249 |
| 250 extern const char kEULAPathFormat[]; | 250 extern const char kEULAPathFormat[]; |
| 251 extern const char kOemEulaURLPath[]; | 251 extern const char kOemEulaURLPath[]; |
| 252 extern const char kOnlineEulaURLPath[]; |
| 252 #endif | 253 #endif |
| 253 | 254 |
| 254 #if defined(USE_ASH) | 255 #if defined(USE_ASH) |
| 255 extern const char kChromeUITransparencyHost[]; | 256 extern const char kChromeUITransparencyHost[]; |
| 256 #endif | 257 #endif |
| 257 | 258 |
| 258 #if defined(FILE_MANAGER_EXTENSION) | 259 #if defined(FILE_MANAGER_EXTENSION) |
| 259 extern const char kChromeUIFileManagerHost[]; | 260 extern const char kChromeUIFileManagerHost[]; |
| 260 #endif | 261 #endif |
| 261 | 262 |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 // Parameters that get appended to force SafeSearch. | 450 // Parameters that get appended to force SafeSearch. |
| 450 extern const char kSafeSearchSafeParameter[]; | 451 extern const char kSafeSearchSafeParameter[]; |
| 451 extern const char kSafeSearchSsuiParameter[]; | 452 extern const char kSafeSearchSsuiParameter[]; |
| 452 | 453 |
| 453 // The URL for the "Learn more" link in the media access infobar. | 454 // The URL for the "Learn more" link in the media access infobar. |
| 454 extern const char kMediaAccessLearnMoreUrl[]; | 455 extern const char kMediaAccessLearnMoreUrl[]; |
| 455 | 456 |
| 456 } // namespace chrome | 457 } // namespace chrome |
| 457 | 458 |
| 458 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 459 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |