| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |