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 "web/WebRemoteFrameImpl.h" | 5 #include "web/WebRemoteFrameImpl.h" |
6 | 6 |
7 #include "core/frame/FrameView.h" | 7 #include "core/frame/FrameView.h" |
8 #include "core/frame/Settings.h" | 8 #include "core/frame/Settings.h" |
9 #include "core/html/HTMLFrameOwnerElement.h" | 9 #include "core/html/HTMLFrameOwnerElement.h" |
10 #include "core/layout/LayoutObject.h" | 10 #include "core/layout/LayoutObject.h" |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 void WebRemoteFrameImpl::reloadWithOverrideURL(const WebURL& overrideUrl, WebFra
meLoadType) | 273 void WebRemoteFrameImpl::reloadWithOverrideURL(const WebURL& overrideUrl, WebFra
meLoadType) |
274 { | 274 { |
275 ASSERT_NOT_REACHED(); | 275 ASSERT_NOT_REACHED(); |
276 } | 276 } |
277 | 277 |
278 void WebRemoteFrameImpl::loadRequest(const WebURLRequest&) | 278 void WebRemoteFrameImpl::loadRequest(const WebURLRequest&) |
279 { | 279 { |
280 ASSERT_NOT_REACHED(); | 280 ASSERT_NOT_REACHED(); |
281 } | 281 } |
282 | 282 |
283 void WebRemoteFrameImpl::loadHistoryItem(const WebHistoryItem&, WebHistoryLoadTy
pe, WebURLRequest::CachePolicy) | 283 void WebRemoteFrameImpl::loadHistoryItem(const WebHistoryItem&, WebHistoryLoadTy
pe, WebCachePolicy) |
284 { | 284 { |
285 ASSERT_NOT_REACHED(); | 285 ASSERT_NOT_REACHED(); |
286 } | 286 } |
287 | 287 |
288 void WebRemoteFrameImpl::loadHTMLString( | 288 void WebRemoteFrameImpl::loadHTMLString( |
289 const WebData& html, const WebURL& baseURL, const WebURL& unreachableURL, | 289 const WebData& html, const WebURL& baseURL, const WebURL& unreachableURL, |
290 bool replace) | 290 bool replace) |
291 { | 291 { |
292 ASSERT_NOT_REACHED(); | 292 ASSERT_NOT_REACHED(); |
293 } | 293 } |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
712 : WebRemoteFrame(scope) | 712 : WebRemoteFrame(scope) |
713 , m_frameClient(RemoteFrameClientImpl::create(this)) | 713 , m_frameClient(RemoteFrameClientImpl::create(this)) |
714 , m_client(client) | 714 , m_client(client) |
715 #if ENABLE(OILPAN) | 715 #if ENABLE(OILPAN) |
716 , m_selfKeepAlive(this) | 716 , m_selfKeepAlive(this) |
717 #endif | 717 #endif |
718 { | 718 { |
719 } | 719 } |
720 | 720 |
721 } // namespace blink | 721 } // namespace blink |
OLD | NEW |