| 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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 NOTREACHED(); | 551 NOTREACHED(); |
| 552 return WebRect(); | 552 return WebRect(); |
| 553 } | 553 } |
| 554 | 554 |
| 555 bool WebRemoteFrameImpl::selectionStartHasSpellingMarkerFor(int from, int length
) const | 555 bool WebRemoteFrameImpl::selectionStartHasSpellingMarkerFor(int from, int length
) const |
| 556 { | 556 { |
| 557 NOTREACHED(); | 557 NOTREACHED(); |
| 558 return false; | 558 return false; |
| 559 } | 559 } |
| 560 | 560 |
| 561 void WebRemoteFrameImpl::copyImageAt(const WebPoint& point) |
| 562 { |
| 563 NOTREACHED(); |
| 564 } |
| 565 |
| 566 void WebRemoteFrameImpl::saveImageAt(const WebPoint& point) |
| 567 { |
| 568 NOTREACHED(); |
| 569 } |
| 570 |
| 561 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const | 571 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const |
| 562 { | 572 { |
| 563 NOTREACHED(); | 573 NOTREACHED(); |
| 564 return WebString(); | 574 return WebString(); |
| 565 } | 575 } |
| 566 | 576 |
| 567 WebLocalFrame* WebRemoteFrameImpl::createLocalChild(WebTreeScopeType scope, cons
t WebString& name, const WebString& uniqueName, WebSandboxFlags sandboxFlags, We
bFrameClient* client, WebFrame* previousSibling, const WebFrameOwnerProperties&
frameOwnerProperties, WebFrame* opener) | 577 WebLocalFrame* WebRemoteFrameImpl::createLocalChild(WebTreeScopeType scope, cons
t WebString& name, const WebString& uniqueName, WebSandboxFlags sandboxFlags, We
bFrameClient* client, WebFrame* previousSibling, const WebFrameOwnerProperties&
frameOwnerProperties, WebFrame* opener) |
| 568 { | 578 { |
| 569 WebLocalFrameImpl* child = WebLocalFrameImpl::create(scope, client, opener); | 579 WebLocalFrameImpl* child = WebLocalFrameImpl::create(scope, client, opener); |
| 570 insertAfter(child, previousSibling); | 580 insertAfter(child, previousSibling); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 | 702 |
| 693 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli
ent* client) | 703 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli
ent* client) |
| 694 : WebRemoteFrame(scope) | 704 : WebRemoteFrame(scope) |
| 695 , m_frameClient(RemoteFrameClientImpl::create(this)) | 705 , m_frameClient(RemoteFrameClientImpl::create(this)) |
| 696 , m_client(client) | 706 , m_client(client) |
| 697 , m_selfKeepAlive(this) | 707 , m_selfKeepAlive(this) |
| 698 { | 708 { |
| 699 } | 709 } |
| 700 | 710 |
| 701 } // namespace blink | 711 } // namespace blink |
| OLD | NEW |