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 "config.h" | 5 #include "config.h" |
6 #include "web/WebRemoteFrameImpl.h" | 6 #include "web/WebRemoteFrameImpl.h" |
7 | 7 |
8 #include "core/frame/RemoteFrame.h" | 8 #include "core/frame/RemoteFrame.h" |
9 #include "public/platform/WebFloatRect.h" | 9 #include "public/platform/WebFloatRect.h" |
10 #include "public/platform/WebRect.h" | 10 #include "public/platform/WebRect.h" |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 { | 375 { |
376 ASSERT_NOT_REACHED(); | 376 ASSERT_NOT_REACHED(); |
377 return 0; | 377 return 0; |
378 } | 378 } |
379 | 379 |
380 void WebRemoteFrameImpl::replaceSelection(const WebString&) | 380 void WebRemoteFrameImpl::replaceSelection(const WebString&) |
381 { | 381 { |
382 ASSERT_NOT_REACHED(); | 382 ASSERT_NOT_REACHED(); |
383 } | 383 } |
384 | 384 |
| 385 bool WebRemoteFrameImpl::setCaretSelectionFromRangeSelection() |
| 386 { |
| 387 ASSERT_NOT_REACHED(); |
| 388 return false; |
| 389 } |
| 390 |
385 void WebRemoteFrameImpl::insertText(const WebString&) | 391 void WebRemoteFrameImpl::insertText(const WebString&) |
386 { | 392 { |
387 ASSERT_NOT_REACHED(); | 393 ASSERT_NOT_REACHED(); |
388 } | 394 } |
389 | 395 |
390 void WebRemoteFrameImpl::setMarkedText(const WebString&, unsigned location, unsi
gned length) | 396 void WebRemoteFrameImpl::setMarkedText(const WebString&, unsigned location, unsi
gned length) |
391 { | 397 { |
392 ASSERT_NOT_REACHED(); | 398 ASSERT_NOT_REACHED(); |
393 } | 399 } |
394 | 400 |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
717 } | 723 } |
718 | 724 |
719 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const | 725 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const |
720 { | 726 { |
721 ASSERT_NOT_REACHED(); | 727 ASSERT_NOT_REACHED(); |
722 return WebString(); | 728 return WebString(); |
723 } | 729 } |
724 | 730 |
725 } // namespace blink | 731 } // namespace blink |
726 | 732 |
OLD | NEW |