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 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after) | 530 void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after) |
531 { | 531 { |
532 ASSERT_NOT_REACHED(); | 532 ASSERT_NOT_REACHED(); |
533 } | 533 } |
534 | 534 |
535 void WebRemoteFrameImpl::addStyleSheetByURL(const WebString& url) | 535 void WebRemoteFrameImpl::addStyleSheetByURL(const WebString& url) |
536 { | 536 { |
537 ASSERT_NOT_REACHED(); | 537 ASSERT_NOT_REACHED(); |
538 } | 538 } |
539 | 539 |
| 540 void WebRemoteFrameImpl::notifyTransitionShown(int elementsToHide) |
| 541 { |
| 542 ASSERT_NOT_REACHED(); |
| 543 } |
| 544 |
| 545 void WebRemoteFrameImpl::setupTransitionView(const WebString& markup) |
| 546 { |
| 547 ASSERT_NOT_REACHED(); |
| 548 } |
| 549 |
540 void WebRemoteFrameImpl::setCaretVisible(bool) | 550 void WebRemoteFrameImpl::setCaretVisible(bool) |
541 { | 551 { |
542 ASSERT_NOT_REACHED(); | 552 ASSERT_NOT_REACHED(); |
543 } | 553 } |
544 | 554 |
545 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constra
inToNode) | 555 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constra
inToNode) |
546 { | 556 { |
547 ASSERT_NOT_REACHED(); | 557 ASSERT_NOT_REACHED(); |
548 return 0; | 558 return 0; |
549 } | 559 } |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
717 } | 727 } |
718 | 728 |
719 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const | 729 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const |
720 { | 730 { |
721 ASSERT_NOT_REACHED(); | 731 ASSERT_NOT_REACHED(); |
722 return WebString(); | 732 return WebString(); |
723 } | 733 } |
724 | 734 |
725 } // namespace blink | 735 } // namespace blink |
726 | 736 |
OLD | NEW |