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

Unified Diff: third_party/WebKit/Source/web/WebDataSourceImpl.h

Issue 2461043003: Fix for the RedirectTest.ClientServerServer test. (Closed)
Patch Set: More build error fixes Created 4 years, 1 month 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/web/WebDataSourceImpl.h
diff --git a/third_party/WebKit/Source/web/WebDataSourceImpl.h b/third_party/WebKit/Source/web/WebDataSourceImpl.h
index 879bdd8488996975512c3001e30142ec3e8bf72d..bbc8efbdddf08445ea80e76d6ac7ea293c67bb31 100644
--- a/third_party/WebKit/Source/web/WebDataSourceImpl.h
+++ b/third_party/WebKit/Source/web/WebDataSourceImpl.h
@@ -31,6 +31,7 @@
#ifndef WebDataSourceImpl_h
#define WebDataSourceImpl_h
+#include "core/frame/FrameTypes.h"
#include "core/loader/DocumentLoader.h"
#include "platform/exported/WrappedResourceRequest.h"
#include "platform/exported/WrappedResourceResponse.h"
@@ -46,7 +47,8 @@ class WebDataSourceImpl final : public DocumentLoader, public WebDataSource {
public:
static WebDataSourceImpl* create(LocalFrame*,
const ResourceRequest&,
- const SubstituteData&);
+ const SubstituteData&,
+ ClientRedirectPolicy);
static WebDataSourceImpl* fromDocumentLoader(DocumentLoader* loader) {
return static_cast<WebDataSourceImpl*>(loader);
@@ -77,7 +79,10 @@ class WebDataSourceImpl final : public DocumentLoader, public WebDataSource {
DECLARE_VIRTUAL_TRACE();
private:
- WebDataSourceImpl(LocalFrame*, const ResourceRequest&, const SubstituteData&);
+ WebDataSourceImpl(LocalFrame*,
+ const ResourceRequest&,
+ const SubstituteData&,
+ ClientRedirectPolicy);
~WebDataSourceImpl() override;
void detachFromFrame() override;
String debugName() const override { return "WebDataSourceImpl"; }
« no previous file with comments | « third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebDataSourceImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698