| 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 #include "url/url_constants.h" | 9 #include "url/url_constants.h" |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 CONTENT_EXPORT extern const char kChromeUIIndexedDBInternalsHost[]; | 34 CONTENT_EXPORT extern const char kChromeUIIndexedDBInternalsHost[]; |
| 35 CONTENT_EXPORT extern const char kChromeUIMediaInternalsHost[]; | 35 CONTENT_EXPORT extern const char kChromeUIMediaInternalsHost[]; |
| 36 CONTENT_EXPORT extern const char kChromeUINetworkViewCacheHost[]; | 36 CONTENT_EXPORT extern const char kChromeUINetworkViewCacheHost[]; |
| 37 CONTENT_EXPORT extern const char kChromeUIResourcesHost[]; | 37 CONTENT_EXPORT extern const char kChromeUIResourcesHost[]; |
| 38 CONTENT_EXPORT extern const char kChromeUIServiceWorkerInternalsHost[]; | 38 CONTENT_EXPORT extern const char kChromeUIServiceWorkerInternalsHost[]; |
| 39 CONTENT_EXPORT extern const char kChromeUITcmallocHost[]; | 39 CONTENT_EXPORT extern const char kChromeUITcmallocHost[]; |
| 40 CONTENT_EXPORT extern const char kChromeUITracingHost[]; | 40 CONTENT_EXPORT extern const char kChromeUITracingHost[]; |
| 41 CONTENT_EXPORT extern const char kChromeUIWebRTCInternalsHost[]; | 41 CONTENT_EXPORT extern const char kChromeUIWebRTCInternalsHost[]; |
| 42 | 42 |
| 43 // Full about URLs (including schemes). | 43 // Full about URLs (including schemes). |
| 44 CONTENT_EXPORT extern const char kChromeUIBrowserCrashURL[]; |
| 44 CONTENT_EXPORT extern const char kChromeUICrashURL[]; | 45 CONTENT_EXPORT extern const char kChromeUICrashURL[]; |
| 45 CONTENT_EXPORT extern const char kChromeUIDumpURL[]; | 46 CONTENT_EXPORT extern const char kChromeUIDumpURL[]; |
| 46 CONTENT_EXPORT extern const char kChromeUIGpuCleanURL[]; | 47 CONTENT_EXPORT extern const char kChromeUIGpuCleanURL[]; |
| 47 CONTENT_EXPORT extern const char kChromeUIGpuCrashURL[]; | 48 CONTENT_EXPORT extern const char kChromeUIGpuCrashURL[]; |
| 48 CONTENT_EXPORT extern const char kChromeUIGpuHangURL[]; | 49 CONTENT_EXPORT extern const char kChromeUIGpuHangURL[]; |
| 49 CONTENT_EXPORT extern const char kChromeUIHangURL[]; | 50 CONTENT_EXPORT extern const char kChromeUIHangURL[]; |
| 50 CONTENT_EXPORT extern const char kChromeUIKillURL[]; | 51 CONTENT_EXPORT extern const char kChromeUIKillURL[]; |
| 51 CONTENT_EXPORT extern const char kChromeUIPpapiFlashCrashURL[]; | 52 CONTENT_EXPORT extern const char kChromeUIPpapiFlashCrashURL[]; |
| 52 CONTENT_EXPORT extern const char kChromeUIPpapiFlashHangURL[]; | 53 CONTENT_EXPORT extern const char kChromeUIPpapiFlashHangURL[]; |
| 53 CONTENT_EXPORT extern const char kChromeUIServiceWorkerInternalsURL[]; | 54 CONTENT_EXPORT extern const char kChromeUIServiceWorkerInternalsURL[]; |
| 54 | 55 |
| 55 // Special URL used to start a navigation to an error page. | 56 // Special URL used to start a navigation to an error page. |
| 56 CONTENT_EXPORT extern const char kUnreachableWebDataURL[]; | 57 CONTENT_EXPORT extern const char kUnreachableWebDataURL[]; |
| 57 | 58 |
| 58 // Full about URLs (including schemes). | 59 // Full about URLs (including schemes). |
| 59 CONTENT_EXPORT extern const char kChromeUINetworkViewCacheURL[]; | 60 CONTENT_EXPORT extern const char kChromeUINetworkViewCacheURL[]; |
| 60 CONTENT_EXPORT extern const char kChromeUIShorthangURL[]; | 61 CONTENT_EXPORT extern const char kChromeUIShorthangURL[]; |
| 61 | 62 |
| 62 // Special URL used to swap out a view being rendered by another process. | 63 // Special URL used to swap out a view being rendered by another process. |
| 63 CONTENT_EXPORT extern const char kSwappedOutURL[]; | 64 CONTENT_EXPORT extern const char kSwappedOutURL[]; |
| 64 | 65 |
| 65 } // namespace content | 66 } // namespace content |
| 66 | 67 |
| 67 #endif // CONTENT_PUBLIC_COMMON_URL_CONSTANTS_H_ | 68 #endif // CONTENT_PUBLIC_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |