| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 extern const char kChromeUIThumbnailHost[]; | 228 extern const char kChromeUIThumbnailHost[]; |
| 229 extern const char kChromeUIThumbnailHost2[]; | 229 extern const char kChromeUIThumbnailHost2[]; |
| 230 extern const char kChromeUIThumbnailListHost[]; | 230 extern const char kChromeUIThumbnailListHost[]; |
| 231 extern const char kChromeUITouchIconHost[]; | 231 extern const char kChromeUITouchIconHost[]; |
| 232 extern const char kChromeUITranslateInternalsHost[]; | 232 extern const char kChromeUITranslateInternalsHost[]; |
| 233 extern const char kChromeUIUberFrameHost[]; | 233 extern const char kChromeUIUberFrameHost[]; |
| 234 extern const char kChromeUIUberHost[]; | 234 extern const char kChromeUIUberHost[]; |
| 235 extern const char kChromeUIUserActionsHost[]; | 235 extern const char kChromeUIUserActionsHost[]; |
| 236 extern const char kChromeUIVersionHost[]; | 236 extern const char kChromeUIVersionHost[]; |
| 237 extern const char kChromeUIVoiceSearchHost[]; | 237 extern const char kChromeUIVoiceSearchHost[]; |
| 238 extern const char kChromeUIWebRTCDeviceProviderHost[]; |
| 238 extern const char kChromeUIWorkersHost[]; | 239 extern const char kChromeUIWorkersHost[]; |
| 239 | 240 |
| 240 extern const char kChromeUIScreenshotPath[]; | 241 extern const char kChromeUIScreenshotPath[]; |
| 241 extern const char kChromeUIThemePath[]; | 242 extern const char kChromeUIThemePath[]; |
| 242 | 243 |
| 243 #if defined(ENABLE_PRINT_PREVIEW) | 244 #if defined(ENABLE_PRINT_PREVIEW) |
| 244 extern const char kChromeUIPrintHost[]; | 245 extern const char kChromeUIPrintHost[]; |
| 245 #endif // ENABLE_PRINT_PREVIEW | 246 #endif // ENABLE_PRINT_PREVIEW |
| 246 | 247 |
| 247 #if defined(OS_ANDROID) | 248 #if defined(OS_ANDROID) |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 // The URL for the 32-bit Mac deprecation help center article | 544 // The URL for the 32-bit Mac deprecation help center article |
| 544 extern const char kMac32BitDeprecationURL[]; | 545 extern const char kMac32BitDeprecationURL[]; |
| 545 #endif | 546 #endif |
| 546 | 547 |
| 547 // The URL for the "Learn more" link the the Easy Unlock settings. | 548 // The URL for the "Learn more" link the the Easy Unlock settings. |
| 548 extern const char kEasyUnlockLearnMoreUrl[]; | 549 extern const char kEasyUnlockLearnMoreUrl[]; |
| 549 | 550 |
| 550 } // namespace chrome | 551 } // namespace chrome |
| 551 | 552 |
| 552 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 553 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |