| 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 <stddef.h> | 10 #include <stddef.h> |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 extern const char kChromeUISystemInfoHost[]; | 226 extern const char kChromeUISystemInfoHost[]; |
| 227 extern const char kChromeUITermsHost[]; | 227 extern const char kChromeUITermsHost[]; |
| 228 extern const char kChromeUIThemeHost[]; | 228 extern const char kChromeUIThemeHost[]; |
| 229 extern const char kChromeUIThumbnailHost[]; | 229 extern const char kChromeUIThumbnailHost[]; |
| 230 extern const char kChromeUIThumbnailHost2[]; | 230 extern const char kChromeUIThumbnailHost2[]; |
| 231 extern const char kChromeUIThumbnailListHost[]; | 231 extern const char kChromeUIThumbnailListHost[]; |
| 232 extern const char kChromeUITouchIconHost[]; | 232 extern const char kChromeUITouchIconHost[]; |
| 233 extern const char kChromeUITranslateInternalsHost[]; | 233 extern const char kChromeUITranslateInternalsHost[]; |
| 234 extern const char kChromeUIUberFrameHost[]; | 234 extern const char kChromeUIUberFrameHost[]; |
| 235 extern const char kChromeUIUberHost[]; | 235 extern const char kChromeUIUberHost[]; |
| 236 extern const char kChromeUIUsbInternalsHost[]; |
| 236 extern const char kChromeUIUserActionsHost[]; | 237 extern const char kChromeUIUserActionsHost[]; |
| 237 extern const char kChromeUIVersionHost[]; | 238 extern const char kChromeUIVersionHost[]; |
| 238 extern const char kChromeUIWorkersHost[]; | 239 extern const char kChromeUIWorkersHost[]; |
| 239 | 240 |
| 240 extern const char kChromeUIThemePath[]; | 241 extern const char kChromeUIThemePath[]; |
| 241 | 242 |
| 242 #if defined(ENABLE_PRINT_PREVIEW) | 243 #if defined(ENABLE_PRINT_PREVIEW) |
| 243 extern const char kChromeUIPrintHost[]; | 244 extern const char kChromeUIPrintHost[]; |
| 244 #endif // ENABLE_PRINT_PREVIEW | 245 #endif // ENABLE_PRINT_PREVIEW |
| 245 | 246 |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 extern const char kChooserUsbOverviewURL[]; | 590 extern const char kChooserUsbOverviewURL[]; |
| 590 | 591 |
| 591 #if defined(OS_CHROMEOS) | 592 #if defined(OS_CHROMEOS) |
| 592 // The URL for EOL notification | 593 // The URL for EOL notification |
| 593 extern const char kEolNotificationURL[]; | 594 extern const char kEolNotificationURL[]; |
| 594 #endif | 595 #endif |
| 595 | 596 |
| 596 } // namespace chrome | 597 } // namespace chrome |
| 597 | 598 |
| 598 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 599 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |