| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 NOTREACHED(); | 360 NOTREACHED(); |
| 361 return false; | 361 return false; |
| 362 } | 362 } |
| 363 | 363 |
| 364 size_t WebRemoteFrameImpl::characterIndexForPoint(const WebPoint&) const | 364 size_t WebRemoteFrameImpl::characterIndexForPoint(const WebPoint&) const |
| 365 { | 365 { |
| 366 NOTREACHED(); | 366 NOTREACHED(); |
| 367 return 0; | 367 return 0; |
| 368 } | 368 } |
| 369 | 369 |
| 370 bool WebRemoteFrameImpl::executeCommand(const WebString&, const WebNode&) | 370 bool WebRemoteFrameImpl::executeCommand(const WebString&) |
| 371 { | 371 { |
| 372 NOTREACHED(); | 372 NOTREACHED(); |
| 373 return false; | 373 return false; |
| 374 } | 374 } |
| 375 | 375 |
| 376 bool WebRemoteFrameImpl::executeCommand(const WebString&, const WebString& value
, const WebNode&) | 376 bool WebRemoteFrameImpl::executeCommand(const WebString&, const WebString& value
) |
| 377 { | 377 { |
| 378 NOTREACHED(); | 378 NOTREACHED(); |
| 379 return false; | 379 return false; |
| 380 } | 380 } |
| 381 | 381 |
| 382 bool WebRemoteFrameImpl::isCommandEnabled(const WebString&) const | 382 bool WebRemoteFrameImpl::isCommandEnabled(const WebString&) const |
| 383 { | 383 { |
| 384 NOTREACHED(); | 384 NOTREACHED(); |
| 385 return false; | 385 return false; |
| 386 } | 386 } |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 | 692 |
| 693 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli
ent* client) | 693 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli
ent* client) |
| 694 : WebRemoteFrame(scope) | 694 : WebRemoteFrame(scope) |
| 695 , m_frameClient(RemoteFrameClientImpl::create(this)) | 695 , m_frameClient(RemoteFrameClientImpl::create(this)) |
| 696 , m_client(client) | 696 , m_client(client) |
| 697 , m_selfKeepAlive(this) | 697 , m_selfKeepAlive(this) |
| 698 { | 698 { |
| 699 } | 699 } |
| 700 | 700 |
| 701 } // namespace blink | 701 } // namespace blink |
| OLD | NEW |