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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 extern const char kChromeUIMenu[]; | 293 extern const char kChromeUIMenu[]; |
294 extern const char kChromeUINetworkMenu[]; | 294 extern const char kChromeUINetworkMenu[]; |
295 extern const char kChromeUIWrenchMenu[]; | 295 extern const char kChromeUIWrenchMenu[]; |
296 | 296 |
297 extern const char kEULAPathFormat[]; | 297 extern const char kEULAPathFormat[]; |
298 extern const char kOemEulaURLPath[]; | 298 extern const char kOemEulaURLPath[]; |
299 extern const char kOnlineEulaURLPath[]; | 299 extern const char kOnlineEulaURLPath[]; |
300 | 300 |
301 extern const char kChromeOSCreditsPath[]; | 301 extern const char kChromeOSCreditsPath[]; |
302 | 302 |
303 extern const char kChromeUILocalImageHost[]; | 303 extern const char kChromeOSAssetHost[]; |
304 extern const char kChromeUILocalImagePath[]; | 304 extern const char kChromeOSAssetPath[]; |
305 #endif | 305 #endif |
306 | 306 |
307 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 307 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
308 extern const char kChromeUITabModalConfirmDialogHost[]; | 308 extern const char kChromeUITabModalConfirmDialogHost[]; |
309 #endif | 309 #endif |
310 | 310 |
311 #if defined(ENABLE_WEBRTC) | 311 #if defined(ENABLE_WEBRTC) |
312 extern const char kChromeUIWebRtcLogsHost[]; | 312 extern const char kChromeUIWebRtcLogsHost[]; |
313 #endif | 313 #endif |
314 | 314 |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 // The URL for the 32-bit Mac deprecation help center article | 545 // The URL for the 32-bit Mac deprecation help center article |
546 extern const char kMac32BitDeprecationURL[]; | 546 extern const char kMac32BitDeprecationURL[]; |
547 #endif | 547 #endif |
548 | 548 |
549 // The URL for the "Learn more" link the the Easy Unlock settings. | 549 // The URL for the "Learn more" link the the Easy Unlock settings. |
550 extern const char kEasyUnlockLearnMoreUrl[]; | 550 extern const char kEasyUnlockLearnMoreUrl[]; |
551 | 551 |
552 } // namespace chrome | 552 } // namespace chrome |
553 | 553 |
554 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 554 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |