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. |
11 | 11 |
| 12 class GURL; |
| 13 |
12 // TODO(jam): rename this to content. | 14 // TODO(jam): rename this to content. |
13 namespace chrome { | 15 namespace chrome { |
14 | 16 |
15 // Canonical schemes you can use as input to GURL.SchemeIs(). | 17 // Canonical schemes you can use as input to GURL.SchemeIs(). |
16 // TODO(jam): some of these don't below in the content layer, but are accessed | 18 // TODO(jam): some of these don't below in the content layer, but are accessed |
17 // from there. | 19 // from there. |
18 CONTENT_EXPORT extern const char kAboutScheme[]; | 20 CONTENT_EXPORT extern const char kAboutScheme[]; |
19 CONTENT_EXPORT extern const char kBlobScheme[]; | 21 CONTENT_EXPORT extern const char kBlobScheme[]; |
20 CONTENT_EXPORT extern const char kChromeDevToolsScheme[]; | 22 CONTENT_EXPORT extern const char kChromeDevToolsScheme[]; |
21 CONTENT_EXPORT extern const char kChromeInternalScheme[]; | 23 CONTENT_EXPORT extern const char kChromeInternalScheme[]; |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 CONTENT_EXPORT extern const char kChromeUINetworkViewCacheURL[]; | 68 CONTENT_EXPORT extern const char kChromeUINetworkViewCacheURL[]; |
67 CONTENT_EXPORT extern const char kChromeUIShorthangURL[]; | 69 CONTENT_EXPORT extern const char kChromeUIShorthangURL[]; |
68 | 70 |
69 // Special URL used to swap out a view being rendered by another process. | 71 // Special URL used to swap out a view being rendered by another process. |
70 extern const char kSwappedOutURL[]; | 72 extern const char kSwappedOutURL[]; |
71 | 73 |
72 // Null terminated list of schemes that are savable. This function can be | 74 // Null terminated list of schemes that are savable. This function can be |
73 // invoked on any thread. | 75 // invoked on any thread. |
74 CONTENT_EXPORT const char* const* GetSavableSchemes(); | 76 CONTENT_EXPORT const char* const* GetSavableSchemes(); |
75 | 77 |
| 78 // Returns true if the url has a scheme for WebUI. See also |
| 79 // WebUIControllerFactory::UseWebUIForURL in the browser process. |
| 80 CONTENT_EXPORT bool HasWebUIScheme(const GURL& url); |
| 81 |
76 } // namespace content | 82 } // namespace content |
77 | 83 |
78 #endif // CONTENT_PUBLIC_COMMON_URL_CONSTANTS_H_ | 84 #endif // CONTENT_PUBLIC_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |