Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(983)

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/ResourceRequest.h

Issue 2746113002: platform/loader: move network/Resource* to loader/fetch (Closed)
Patch Set: git rebase master Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>);

Powered by Google App Engine
This is Rietveld 408576698