| 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/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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 bool WebRemoteFrameImpl::isViewSourceModeEnabled() const { | 259 bool WebRemoteFrameImpl::isViewSourceModeEnabled() const { |
| 260 NOTREACHED(); | 260 NOTREACHED(); |
| 261 return false; | 261 return false; |
| 262 } | 262 } |
| 263 | 263 |
| 264 void WebRemoteFrameImpl::setReferrerForRequest(WebURLRequest&, | 264 void WebRemoteFrameImpl::setReferrerForRequest(WebURLRequest&, |
| 265 const WebURL& referrer) { | 265 const WebURL& referrer) { |
| 266 NOTREACHED(); | 266 NOTREACHED(); |
| 267 } | 267 } |
| 268 | 268 |
| 269 void WebRemoteFrameImpl::dispatchWillSendRequest(WebURLRequest&) { | |
| 270 NOTREACHED(); | |
| 271 } | |
| 272 | |
| 273 WebAssociatedURLLoader* WebRemoteFrameImpl::createAssociatedURLLoader( | 269 WebAssociatedURLLoader* WebRemoteFrameImpl::createAssociatedURLLoader( |
| 274 const WebAssociatedURLLoaderOptions&) { | 270 const WebAssociatedURLLoaderOptions&) { |
| 275 NOTREACHED(); | 271 NOTREACHED(); |
| 276 return nullptr; | 272 return nullptr; |
| 277 } | 273 } |
| 278 | 274 |
| 279 unsigned WebRemoteFrameImpl::unloadListenerCount() const { | 275 unsigned WebRemoteFrameImpl::unloadListenerCount() const { |
| 280 NOTREACHED(); | 276 NOTREACHED(); |
| 281 return 0; | 277 return 0; |
| 282 } | 278 } |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 } | 527 } |
| 532 | 528 |
| 533 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 529 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
| 534 WebRemoteFrameClient* client) | 530 WebRemoteFrameClient* client) |
| 535 : WebRemoteFrame(scope), | 531 : WebRemoteFrame(scope), |
| 536 m_frameClient(RemoteFrameClientImpl::create(this)), | 532 m_frameClient(RemoteFrameClientImpl::create(this)), |
| 537 m_client(client), | 533 m_client(client), |
| 538 m_selfKeepAlive(this) {} | 534 m_selfKeepAlive(this) {} |
| 539 | 535 |
| 540 } // namespace blink | 536 } // namespace blink |
| OLD | NEW |