| 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 #ifndef CONTENT_PUBLIC_COMMON_URL_CONSTANTS_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_URL_CONSTANTS_H_ |
| 6 #define CONTENT_PUBLIC_COMMON_URL_CONSTANTS_H_ | 6 #define CONTENT_PUBLIC_COMMON_URL_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
| 9 | 9 |
| 10 // Contains constants for known URLs and portions thereof. | 10 // Contains constants for known URLs and portions thereof. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 CONTENT_EXPORT extern const char kChromeUIAccessibilityHost[]; | 43 CONTENT_EXPORT extern const char kChromeUIAccessibilityHost[]; |
| 44 CONTENT_EXPORT extern const char kChromeUIAppCacheInternalsHost[]; | 44 CONTENT_EXPORT extern const char kChromeUIAppCacheInternalsHost[]; |
| 45 CONTENT_EXPORT extern const char kChromeUIBlobInternalsHost[]; | 45 CONTENT_EXPORT extern const char kChromeUIBlobInternalsHost[]; |
| 46 CONTENT_EXPORT extern const char kChromeUIBrowserCrashHost[]; | 46 CONTENT_EXPORT extern const char kChromeUIBrowserCrashHost[]; |
| 47 CONTENT_EXPORT extern const char kChromeUIGpuHost[]; | 47 CONTENT_EXPORT extern const char kChromeUIGpuHost[]; |
| 48 CONTENT_EXPORT extern const char kChromeUIHistogramHost[]; | 48 CONTENT_EXPORT extern const char kChromeUIHistogramHost[]; |
| 49 CONTENT_EXPORT extern const char kChromeUIIndexedDBInternalsHost[]; | 49 CONTENT_EXPORT extern const char kChromeUIIndexedDBInternalsHost[]; |
| 50 CONTENT_EXPORT extern const char kChromeUIMediaInternalsHost[]; | 50 CONTENT_EXPORT extern const char kChromeUIMediaInternalsHost[]; |
| 51 CONTENT_EXPORT extern const char kChromeUINetworkViewCacheHost[]; | 51 CONTENT_EXPORT extern const char kChromeUINetworkViewCacheHost[]; |
| 52 CONTENT_EXPORT extern const char kChromeUIResourcesHost[]; | 52 CONTENT_EXPORT extern const char kChromeUIResourcesHost[]; |
| 53 CONTENT_EXPORT extern const char kChromeUIServiceWorkerInternalsHost[]; |
| 53 CONTENT_EXPORT extern const char kChromeUITcmallocHost[]; | 54 CONTENT_EXPORT extern const char kChromeUITcmallocHost[]; |
| 54 CONTENT_EXPORT extern const char kChromeUITracingHost[]; | 55 CONTENT_EXPORT extern const char kChromeUITracingHost[]; |
| 55 CONTENT_EXPORT extern const char kChromeUIWebRTCInternalsHost[]; | 56 CONTENT_EXPORT extern const char kChromeUIWebRTCInternalsHost[]; |
| 56 | 57 |
| 57 // Full about URLs (including schemes). | 58 // Full about URLs (including schemes). |
| 58 CONTENT_EXPORT extern const char kChromeUICrashURL[]; | 59 CONTENT_EXPORT extern const char kChromeUICrashURL[]; |
| 59 CONTENT_EXPORT extern const char kChromeUIGpuCleanURL[]; | 60 CONTENT_EXPORT extern const char kChromeUIGpuCleanURL[]; |
| 60 CONTENT_EXPORT extern const char kChromeUIGpuCrashURL[]; | 61 CONTENT_EXPORT extern const char kChromeUIGpuCrashURL[]; |
| 61 CONTENT_EXPORT extern const char kChromeUIGpuHangURL[]; | 62 CONTENT_EXPORT extern const char kChromeUIGpuHangURL[]; |
| 62 CONTENT_EXPORT extern const char kChromeUIHangURL[]; | 63 CONTENT_EXPORT extern const char kChromeUIHangURL[]; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 73 // Full about URLs (including schemes). | 74 // Full about URLs (including schemes). |
| 74 CONTENT_EXPORT extern const char kChromeUINetworkViewCacheURL[]; | 75 CONTENT_EXPORT extern const char kChromeUINetworkViewCacheURL[]; |
| 75 CONTENT_EXPORT extern const char kChromeUIShorthangURL[]; | 76 CONTENT_EXPORT extern const char kChromeUIShorthangURL[]; |
| 76 | 77 |
| 77 // Special URL used to swap out a view being rendered by another process. | 78 // Special URL used to swap out a view being rendered by another process. |
| 78 CONTENT_EXPORT extern const char kSwappedOutURL[]; | 79 CONTENT_EXPORT extern const char kSwappedOutURL[]; |
| 79 | 80 |
| 80 } // namespace content | 81 } // namespace content |
| 81 | 82 |
| 82 #endif // CONTENT_PUBLIC_COMMON_URL_CONSTANTS_H_ | 83 #endif // CONTENT_PUBLIC_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |