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

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

Issue 2399463007: AssociatedURLLoader shouldn't derive from WebURLLoader (Closed)
Patch Set: Rebase 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/public/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "web/WebRemoteFrameImpl.h" 5 #include "web/WebRemoteFrameImpl.h"
6 6
7 #include "core/dom/Fullscreen.h" 7 #include "core/dom/Fullscreen.h"
8 #include "core/dom/RemoteSecurityContext.h" 8 #include "core/dom/RemoteSecurityContext.h"
9 #include "core/dom/SecurityContext.h" 9 #include "core/dom/SecurityContext.h"
10 #include "core/frame/FrameView.h" 10 #include "core/frame/FrameView.h"
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 276
277 void WebRemoteFrameImpl::setReferrerForRequest(WebURLRequest&, 277 void WebRemoteFrameImpl::setReferrerForRequest(WebURLRequest&,
278 const WebURL& referrer) { 278 const WebURL& referrer) {
279 NOTREACHED(); 279 NOTREACHED();
280 } 280 }
281 281
282 void WebRemoteFrameImpl::dispatchWillSendRequest(WebURLRequest&) { 282 void WebRemoteFrameImpl::dispatchWillSendRequest(WebURLRequest&) {
283 NOTREACHED(); 283 NOTREACHED();
284 } 284 }
285 285
286 WebURLLoader* WebRemoteFrameImpl::createAssociatedURLLoader( 286 WebAssociatedURLLoader* WebRemoteFrameImpl::createAssociatedURLLoader(
287 const WebURLLoaderOptions&) { 287 const WebAssociatedURLLoaderOptions&) {
288 NOTREACHED(); 288 NOTREACHED();
289 return nullptr; 289 return nullptr;
290 } 290 }
291 291
292 unsigned WebRemoteFrameImpl::unloadListenerCount() const { 292 unsigned WebRemoteFrameImpl::unloadListenerCount() const {
293 NOTREACHED(); 293 NOTREACHED();
294 return 0; 294 return 0;
295 } 295 }
296 296
297 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, 297 int WebRemoteFrameImpl::printBegin(const WebPrintParams&,
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 } 522 }
523 523
524 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, 524 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope,
525 WebRemoteFrameClient* client) 525 WebRemoteFrameClient* client)
526 : WebRemoteFrame(scope), 526 : WebRemoteFrame(scope),
527 m_frameClient(RemoteFrameClientImpl::create(this)), 527 m_frameClient(RemoteFrameClientImpl::create(this)),
528 m_client(client), 528 m_client(client),
529 m_selfKeepAlive(this) {} 529 m_selfKeepAlive(this) {}
530 530
531 } // namespace blink 531 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698