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

Side by Side Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.h

Issue 2701333004: Remove dispatchWillSendRequest from WebFrame (Closed)
Patch Set: . Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebRemoteFrameImpl_h 5 #ifndef WebRemoteFrameImpl_h
6 #define WebRemoteFrameImpl_h 6 #define WebRemoteFrameImpl_h
7 7
8 #include "core/frame/RemoteFrame.h" 8 #include "core/frame/RemoteFrame.h"
9 #include "platform/heap/SelfKeepAlive.h" 9 #include "platform/heap/SelfKeepAlive.h"
10 #include "public/platform/WebInsecureRequestPolicy.h" 10 #include "public/platform/WebInsecureRequestPolicy.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 void loadHTMLString(const WebData& html, 83 void loadHTMLString(const WebData& html,
84 const WebURL& baseURL, 84 const WebURL& baseURL,
85 const WebURL& unreachableURL, 85 const WebURL& unreachableURL,
86 bool replace) override; 86 bool replace) override;
87 void stopLoading() override; 87 void stopLoading() override;
88 WebDataSource* provisionalDataSource() const override; 88 WebDataSource* provisionalDataSource() const override;
89 WebDataSource* dataSource() const override; 89 WebDataSource* dataSource() const override;
90 void enableViewSourceMode(bool enable) override; 90 void enableViewSourceMode(bool enable) override;
91 bool isViewSourceModeEnabled() const override; 91 bool isViewSourceModeEnabled() const override;
92 void setReferrerForRequest(WebURLRequest&, const WebURL& referrer) override; 92 void setReferrerForRequest(WebURLRequest&, const WebURL& referrer) override;
93 void dispatchWillSendRequest(WebURLRequest&) override;
94 WebAssociatedURLLoader* createAssociatedURLLoader( 93 WebAssociatedURLLoader* createAssociatedURLLoader(
95 const WebAssociatedURLLoaderOptions&) override; 94 const WebAssociatedURLLoaderOptions&) override;
96 unsigned unloadListenerCount() const override; 95 unsigned unloadListenerCount() const override;
97 int printBegin(const WebPrintParams&, 96 int printBegin(const WebPrintParams&,
98 const WebNode& constrainToNode) override; 97 const WebNode& constrainToNode) override;
99 float printPage(int pageToPrint, WebCanvas*) override; 98 float printPage(int pageToPrint, WebCanvas*) override;
100 float getPrintPageShrink(int page) override; 99 float getPrintPageShrink(int page) override;
101 void printEnd() override; 100 void printEnd() override;
102 bool isPrintScalingDisabledForPlugin(const WebNode&) override; 101 bool isPrintScalingDisabledForPlugin(const WebNode&) override;
103 void printPagesWithBoundaries(WebCanvas*, const WebSize&) override; 102 void printPagesWithBoundaries(WebCanvas*, const WebSize&) override;
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 190
192 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, 191 DEFINE_TYPE_CASTS(WebRemoteFrameImpl,
193 WebFrame, 192 WebFrame,
194 frame, 193 frame,
195 frame->isWebRemoteFrame(), 194 frame->isWebRemoteFrame(),
196 frame.isWebRemoteFrame()); 195 frame.isWebRemoteFrame());
197 196
198 } // namespace blink 197 } // namespace blink
199 198
200 #endif // WebRemoteFrameImpl_h 199 #endif // WebRemoteFrameImpl_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698