Chromium Code Reviews| Index: third_party/WebKit/public/platform/WebURLRequest.h |
| diff --git a/third_party/WebKit/public/platform/WebURLRequest.h b/third_party/WebKit/public/platform/WebURLRequest.h |
| index 09b58183fd9e0717ee776f2f549b0cd958e33800..f37fcf28d0c50bfda3b1dfe1d0ee0457a2b3eb03 100644 |
| --- a/third_party/WebKit/public/platform/WebURLRequest.h |
| +++ b/third_party/WebKit/public/platform/WebURLRequest.h |
| @@ -141,6 +141,11 @@ public: |
| LoFiOn, // Request a Lo-Fi version of the resource. |
| }; |
| + enum class LoadingIPC { |
| + ChromeIPC, |
| + Mojo, |
| + }; |
| + |
| class ExtraData { |
| public: |
| virtual ~ExtraData() { } |
| @@ -308,6 +313,8 @@ public: |
| // https://mikewest.github.io/cors-rfc1918/#external-request |
| BLINK_PLATFORM_EXPORT bool isExternalRequest() const; |
| + BLINK_PLATFORM_EXPORT LoadingIPC loadingIPC() const; |
|
kinuko
2016/05/20 09:38:51
nit: The method name feels a bit vague about what
yhirano
2016/05/20 11:32:54
Done.
|
| + |
| #if INSIDE_BLINK |
| BLINK_PLATFORM_EXPORT ResourceRequest& toMutableResourceRequest(); |
| BLINK_PLATFORM_EXPORT const ResourceRequest& toResourceRequest() const; |