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

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

Issue 1176843006: Move window.close implementation to DOMWindow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove resetting of the main view. Created 5 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/RemoteFrameClientImpl.cpp ('k') | Source/web/tests/WebFrameTest.cpp » ('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 "config.h" 5 #include "config.h"
6 #include "web/WebRemoteFrameImpl.h" 6 #include "web/WebRemoteFrameImpl.h"
7 7
8 #include "core/frame/FrameView.h" 8 #include "core/frame/FrameView.h"
9 #include "core/frame/RemoteFrame.h" 9 #include "core/frame/RemoteFrame.h"
10 #include "core/frame/Settings.h" 10 #include "core/frame/Settings.h"
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 325
326 void WebRemoteFrameImpl::loadHTMLString( 326 void WebRemoteFrameImpl::loadHTMLString(
327 const WebData& html, const WebURL& baseURL, const WebURL& unreachableURL, 327 const WebData& html, const WebURL& baseURL, const WebURL& unreachableURL,
328 bool replace) 328 bool replace)
329 { 329 {
330 ASSERT_NOT_REACHED(); 330 ASSERT_NOT_REACHED();
331 } 331 }
332 332
333 void WebRemoteFrameImpl::stopLoading() 333 void WebRemoteFrameImpl::stopLoading()
334 { 334 {
335 ASSERT_NOT_REACHED(); 335 // TODO(dcheng,japhet): Calling this method should stop loads
336 // in all subframes, both remote and local.
336 } 337 }
337 338
338 WebDataSource* WebRemoteFrameImpl::provisionalDataSource() const 339 WebDataSource* WebRemoteFrameImpl::provisionalDataSource() const
339 { 340 {
340 ASSERT_NOT_REACHED(); 341 ASSERT_NOT_REACHED();
341 return nullptr; 342 return nullptr;
342 } 343 }
343 344
344 WebDataSource* WebRemoteFrameImpl::dataSource() const 345 WebDataSource* WebRemoteFrameImpl::dataSource() const
345 { 346 {
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 : WebRemoteFrame(scope) 817 : WebRemoteFrame(scope)
817 , m_frameClient(this) 818 , m_frameClient(this)
818 , m_client(client) 819 , m_client(client)
819 #if ENABLE(OILPAN) 820 #if ENABLE(OILPAN)
820 , m_selfKeepAlive(this) 821 , m_selfKeepAlive(this)
821 #endif 822 #endif
822 { 823 {
823 } 824 }
824 825
825 } // namespace blink 826 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/RemoteFrameClientImpl.cpp ('k') | Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698