| 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 void WebRemoteFrameImpl::reload(bool ignoreCache) | 299 void WebRemoteFrameImpl::reload(bool ignoreCache) |
| 300 { | 300 { |
| 301 ASSERT_NOT_REACHED(); | 301 ASSERT_NOT_REACHED(); |
| 302 } | 302 } |
| 303 | 303 |
| 304 void WebRemoteFrameImpl::reloadWithOverrideURL(const WebURL& overrideUrl, bool i
gnoreCache) | 304 void WebRemoteFrameImpl::reloadWithOverrideURL(const WebURL& overrideUrl, bool i
gnoreCache) |
| 305 { | 305 { |
| 306 ASSERT_NOT_REACHED(); | 306 ASSERT_NOT_REACHED(); |
| 307 } | 307 } |
| 308 | 308 |
| 309 void WebRemoteFrameImpl::loadRequest(const WebURLRequest&) | 309 void WebRemoteFrameImpl::loadRequest(const WebURLRequest&, WebFrameLoadType, con
st WebHistoryItem&, |
| 310 WebHistoryLoadType) |
| 310 { | 311 { |
| 311 ASSERT_NOT_REACHED(); | 312 ASSERT_NOT_REACHED(); |
| 312 } | 313 } |
| 313 | 314 |
| 314 void WebRemoteFrameImpl::loadHistoryItem(const WebHistoryItem&, WebHistoryLoadTy
pe, WebURLRequest::CachePolicy) | 315 void WebRemoteFrameImpl::loadHistoryItem(const WebHistoryItem&, WebHistoryLoadTy
pe, WebURLRequest::CachePolicy) |
| 315 { | 316 { |
| 316 ASSERT_NOT_REACHED(); | 317 ASSERT_NOT_REACHED(); |
| 317 } | 318 } |
| 318 | 319 |
| 319 void WebRemoteFrameImpl::loadData( | 320 void WebRemoteFrameImpl::loadData( |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 : WebRemoteFrame(scope) | 813 : WebRemoteFrame(scope) |
| 813 , m_frameClient(this) | 814 , m_frameClient(this) |
| 814 , m_client(client) | 815 , m_client(client) |
| 815 #if ENABLE(OILPAN) | 816 #if ENABLE(OILPAN) |
| 816 , m_selfKeepAlive(this) | 817 , m_selfKeepAlive(this) |
| 817 #endif | 818 #endif |
| 818 { | 819 { |
| 819 } | 820 } |
| 820 | 821 |
| 821 } // namespace blink | 822 } // namespace blink |
| OLD | NEW |