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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 extern const char kChromeUIThemeHost[]; | 232 extern const char kChromeUIThemeHost[]; |
233 extern const char kChromeUIThumbnailHost[]; | 233 extern const char kChromeUIThumbnailHost[]; |
234 extern const char kChromeUIThumbnailHost2[]; | 234 extern const char kChromeUIThumbnailHost2[]; |
235 extern const char kChromeUIThumbnailListHost[]; | 235 extern const char kChromeUIThumbnailListHost[]; |
236 extern const char kChromeUITouchIconHost[]; | 236 extern const char kChromeUITouchIconHost[]; |
237 extern const char kChromeUITranslateInternalsHost[]; | 237 extern const char kChromeUITranslateInternalsHost[]; |
238 extern const char kChromeUIUberFrameHost[]; | 238 extern const char kChromeUIUberFrameHost[]; |
239 extern const char kChromeUIUberHost[]; | 239 extern const char kChromeUIUberHost[]; |
240 extern const char kChromeUIUserActionsHost[]; | 240 extern const char kChromeUIUserActionsHost[]; |
241 extern const char kChromeUIVersionHost[]; | 241 extern const char kChromeUIVersionHost[]; |
242 extern const char kChromeUIWebRTCDeviceProviderHost[]; | |
243 extern const char kChromeUIWorkersHost[]; | 242 extern const char kChromeUIWorkersHost[]; |
244 | 243 |
245 extern const char kChromeUIThemePath[]; | 244 extern const char kChromeUIThemePath[]; |
246 | 245 |
247 #if defined(ENABLE_PRINT_PREVIEW) | 246 #if defined(ENABLE_PRINT_PREVIEW) |
248 extern const char kChromeUIPrintHost[]; | 247 extern const char kChromeUIPrintHost[]; |
249 #endif // ENABLE_PRINT_PREVIEW | 248 #endif // ENABLE_PRINT_PREVIEW |
250 | 249 |
251 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 250 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
252 extern const char kChromeUILinuxProxyConfigHost[]; | 251 extern const char kChromeUILinuxProxyConfigHost[]; |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 #endif | 568 #endif |
570 | 569 |
571 #if defined(OS_WIN) | 570 #if defined(OS_WIN) |
572 // The URL for the Windows XP/Vista deprecation help center article. | 571 // The URL for the Windows XP/Vista deprecation help center article. |
573 extern const char kWindowsXPVistaDeprecationURL[]; | 572 extern const char kWindowsXPVistaDeprecationURL[]; |
574 #endif | 573 #endif |
575 | 574 |
576 } // namespace chrome | 575 } // namespace chrome |
577 | 576 |
578 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 577 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |