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 "bindings/core/v8/DOMWrapperWorld.h" | 7 #include "bindings/core/v8/DOMWrapperWorld.h" |
8 #include "bindings/core/v8/WindowProxy.h" | 8 #include "bindings/core/v8/WindowProxy.h" |
9 #include "core/dom/Fullscreen.h" | 9 #include "core/dom/Fullscreen.h" |
10 #include "core/dom/RemoteSecurityContext.h" | 10 #include "core/dom/RemoteSecurityContext.h" |
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 WebRect WebRemoteFrameImpl::selectionBoundsRect() const { | 309 WebRect WebRemoteFrameImpl::selectionBoundsRect() const { |
310 NOTREACHED(); | 310 NOTREACHED(); |
311 return WebRect(); | 311 return WebRect(); |
312 } | 312 } |
313 | 313 |
314 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const { | 314 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const { |
315 NOTREACHED(); | 315 NOTREACHED(); |
316 return WebString(); | 316 return WebString(); |
317 } | 317 } |
318 | 318 |
| 319 void WebRemoteFrameImpl::advanceFocusInForm(WebFocusType focusType) { |
| 320 NOTREACHED(); |
| 321 } |
| 322 |
319 WebLocalFrame* WebRemoteFrameImpl::createLocalChild( | 323 WebLocalFrame* WebRemoteFrameImpl::createLocalChild( |
320 WebTreeScopeType scope, | 324 WebTreeScopeType scope, |
321 const WebString& name, | 325 const WebString& name, |
322 WebSandboxFlags sandboxFlags, | 326 WebSandboxFlags sandboxFlags, |
323 WebFrameClient* client, | 327 WebFrameClient* client, |
324 blink::InterfaceProvider* interfaceProvider, | 328 blink::InterfaceProvider* interfaceProvider, |
325 blink::InterfaceRegistry* interfaceRegistry, | 329 blink::InterfaceRegistry* interfaceRegistry, |
326 WebFrame* previousSibling, | 330 WebFrame* previousSibling, |
327 const WebFrameOwnerProperties& frameOwnerProperties, | 331 const WebFrameOwnerProperties& frameOwnerProperties, |
328 WebFrame* opener) { | 332 WebFrame* opener) { |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
527 } | 531 } |
528 | 532 |
529 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, | 533 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, |
530 WebRemoteFrameClient* client) | 534 WebRemoteFrameClient* client) |
531 : WebRemoteFrame(scope), | 535 : WebRemoteFrame(scope), |
532 m_frameClient(RemoteFrameClientImpl::create(this)), | 536 m_frameClient(RemoteFrameClientImpl::create(this)), |
533 m_client(client), | 537 m_client(client), |
534 m_selfKeepAlive(this) {} | 538 m_selfKeepAlive(this) {} |
535 | 539 |
536 } // namespace blink | 540 } // namespace blink |
OLD | NEW |