| Index: third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h
|
| diff --git a/third_party/WebKit/Source/platform/network/ResourceRequest.h b/third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h
|
| similarity index 98%
|
| rename from third_party/WebKit/Source/platform/network/ResourceRequest.h
|
| rename to third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h
|
| index 8c1f927c86c72204d65780288e5e13f49cfbe8c1..6a67868631014ffa9b9790c037f3de55f80e7737 100644
|
| --- a/third_party/WebKit/Source/platform/network/ResourceRequest.h
|
| +++ b/third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h
|
| @@ -28,18 +28,18 @@
|
| #ifndef ResourceRequest_h
|
| #define ResourceRequest_h
|
|
|
| +#include <memory>
|
| #include "platform/HTTPNames.h"
|
| +#include "platform/loader/fetch/ResourceLoadPriority.h"
|
| #include "platform/network/EncodedFormData.h"
|
| #include "platform/network/HTTPHeaderMap.h"
|
| #include "platform/network/HTTPParsers.h"
|
| -#include "platform/network/ResourceLoadPriority.h"
|
| #include "platform/weborigin/KURL.h"
|
| #include "platform/weborigin/Referrer.h"
|
| #include "platform/weborigin/SecurityOrigin.h"
|
| #include "public/platform/WebAddressSpace.h"
|
| #include "public/platform/WebURLRequest.h"
|
| #include "wtf/RefCounted.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -88,7 +88,7 @@ class PLATFORM_EXPORT ResourceRequest final {
|
| bool isEmpty() const;
|
|
|
| const KURL& url() const;
|
| - void setURL(const KURL& url);
|
| + void setURL(const KURL&);
|
|
|
| void removeUserAndPassFromURL();
|
|
|
| @@ -99,7 +99,7 @@ class PLATFORM_EXPORT ResourceRequest final {
|
| void setTimeoutInterval(double);
|
|
|
| const KURL& firstPartyForCookies() const;
|
| - void setFirstPartyForCookies(const KURL& firstPartyForCookies);
|
| + void setFirstPartyForCookies(const KURL&);
|
|
|
| PassRefPtr<SecurityOrigin> requestorOrigin() const;
|
| void setRequestorOrigin(PassRefPtr<SecurityOrigin>);
|
|
|