| 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 | 276 |
| 277 void WebRemoteFrameImpl::setReferrerForRequest(WebURLRequest&, | 277 void WebRemoteFrameImpl::setReferrerForRequest(WebURLRequest&, |
| 278 const WebURL& referrer) { | 278 const WebURL& referrer) { |
| 279 NOTREACHED(); | 279 NOTREACHED(); |
| 280 } | 280 } |
| 281 | 281 |
| 282 void WebRemoteFrameImpl::dispatchWillSendRequest(WebURLRequest&) { | 282 void WebRemoteFrameImpl::dispatchWillSendRequest(WebURLRequest&) { |
| 283 NOTREACHED(); | 283 NOTREACHED(); |
| 284 } | 284 } |
| 285 | 285 |
| 286 WebURLLoader* WebRemoteFrameImpl::createAssociatedURLLoader( | 286 WebAssociatedURLLoader* WebRemoteFrameImpl::createAssociatedURLLoader( |
| 287 const WebURLLoaderOptions&) { | 287 const WebAssociatedURLLoaderOptions&) { |
| 288 NOTREACHED(); | 288 NOTREACHED(); |
| 289 return nullptr; | 289 return nullptr; |
| 290 } | 290 } |
| 291 | 291 |
| 292 unsigned WebRemoteFrameImpl::unloadListenerCount() const { | 292 unsigned WebRemoteFrameImpl::unloadListenerCount() const { |
| 293 NOTREACHED(); | 293 NOTREACHED(); |
| 294 return 0; | 294 return 0; |
| 295 } | 295 } |
| 296 | 296 |
| 297 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, | 297 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 } | 522 } |
| 523 | 523 |
| 524 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 524 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
| 525 WebRemoteFrameClient* client) | 525 WebRemoteFrameClient* client) |
| 526 : WebRemoteFrame(scope), | 526 : WebRemoteFrame(scope), |
| 527 m_frameClient(RemoteFrameClientImpl::create(this)), | 527 m_frameClient(RemoteFrameClientImpl::create(this)), |
| 528 m_client(client), | 528 m_client(client), |
| 529 m_selfKeepAlive(this) {} | 529 m_selfKeepAlive(this) {} |
| 530 | 530 |
| 531 } // namespace blink | 531 } // namespace blink |
| OLD | NEW |