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 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 NOTREACHED(); | 549 NOTREACHED(); |
550 return WebRect(); | 550 return WebRect(); |
551 } | 551 } |
552 | 552 |
553 bool WebRemoteFrameImpl::selectionStartHasSpellingMarkerFor(int from, int length
) const | 553 bool WebRemoteFrameImpl::selectionStartHasSpellingMarkerFor(int from, int length
) const |
554 { | 554 { |
555 NOTREACHED(); | 555 NOTREACHED(); |
556 return false; | 556 return false; |
557 } | 557 } |
558 | 558 |
| 559 void WebRemoteFrameImpl::copyImageAt(const WebPoint& point) |
| 560 { |
| 561 NOTREACHED(); |
| 562 } |
| 563 |
| 564 void WebRemoteFrameImpl::saveImageAt(const WebPoint& point) |
| 565 { |
| 566 NOTREACHED(); |
| 567 } |
| 568 |
559 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const | 569 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const |
560 { | 570 { |
561 NOTREACHED(); | 571 NOTREACHED(); |
562 return WebString(); | 572 return WebString(); |
563 } | 573 } |
564 | 574 |
565 WebLocalFrame* WebRemoteFrameImpl::createLocalChild(WebTreeScopeType scope, cons
t WebString& name, const WebString& uniqueName, WebSandboxFlags sandboxFlags, We
bFrameClient* client, WebFrame* previousSibling, const WebFrameOwnerProperties&
frameOwnerProperties, WebFrame* opener) | 575 WebLocalFrame* WebRemoteFrameImpl::createLocalChild(WebTreeScopeType scope, cons
t WebString& name, const WebString& uniqueName, WebSandboxFlags sandboxFlags, We
bFrameClient* client, WebFrame* previousSibling, const WebFrameOwnerProperties&
frameOwnerProperties, WebFrame* opener) |
566 { | 576 { |
567 WebLocalFrameImpl* child = WebLocalFrameImpl::create(scope, client, opener); | 577 WebLocalFrameImpl* child = WebLocalFrameImpl::create(scope, client, opener); |
568 insertAfter(child, previousSibling); | 578 insertAfter(child, previousSibling); |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
726 | 736 |
727 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli
ent* client) | 737 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli
ent* client) |
728 : WebRemoteFrame(scope) | 738 : WebRemoteFrame(scope) |
729 , m_frameClient(RemoteFrameClientImpl::create(this)) | 739 , m_frameClient(RemoteFrameClientImpl::create(this)) |
730 , m_client(client) | 740 , m_client(client) |
731 , m_selfKeepAlive(this) | 741 , m_selfKeepAlive(this) |
732 { | 742 { |
733 } | 743 } |
734 | 744 |
735 } // namespace blink | 745 } // namespace blink |
OLD | NEW |