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

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

Issue 2461043003: Fix for the RedirectTest.ClientServerServer test. (Closed)
Patch Set: More build errors 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..c716a0f2be076ad5ede6a13fa21f8b028492d153 100644
--- a/third_party/WebKit/Source/web/WebDataSourceImpl.h
+++ b/third_party/WebKit/Source/web/WebDataSourceImpl.h
@@ -46,7 +46,8 @@ class WebDataSourceImpl final : public DocumentLoader, public WebDataSource {
public:
static WebDataSourceImpl* create(LocalFrame*,
const ResourceRequest&,
- const SubstituteData&);
+ const SubstituteData&,
+ bool clientRedirect);
static WebDataSourceImpl* fromDocumentLoader(DocumentLoader* loader) {
return static_cast<WebDataSourceImpl*>(loader);
@@ -77,7 +78,10 @@ class WebDataSourceImpl final : public DocumentLoader, public WebDataSource {
DECLARE_VIRTUAL_TRACE();
private:
- WebDataSourceImpl(LocalFrame*, const ResourceRequest&, const SubstituteData&);
+ WebDataSourceImpl(LocalFrame*,
+ const ResourceRequest&,
+ const SubstituteData&,
+ bool clientRedirect);
~WebDataSourceImpl() override;
void detachFromFrame() override;
String debugName() const override { return "WebDataSourceImpl"; }

Powered by Google App Engine
This is Rietveld 408576698