| 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 "public/platform/WebFloatRect.h" | 8 #include "public/platform/WebFloatRect.h" |
| 9 #include "public/platform/WebRect.h" | 9 #include "public/platform/WebRect.h" |
| 10 #include "public/web/WebDocument.h" | 10 #include "public/web/WebDocument.h" |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 { | 523 { |
| 524 ASSERT_NOT_REACHED(); | 524 ASSERT_NOT_REACHED(); |
| 525 return false; | 525 return false; |
| 526 } | 526 } |
| 527 | 527 |
| 528 void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after) | 528 void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after) |
| 529 { | 529 { |
| 530 ASSERT_NOT_REACHED(); | 530 ASSERT_NOT_REACHED(); |
| 531 } | 531 } |
| 532 | 532 |
| 533 void WebRemoteFrameImpl::addStyleSheetByURL(const WebString& url) |
| 534 { |
| 535 ASSERT_NOT_REACHED(); |
| 536 } |
| 537 |
| 533 void WebRemoteFrameImpl::setCaretVisible(bool) | 538 void WebRemoteFrameImpl::setCaretVisible(bool) |
| 534 { | 539 { |
| 535 ASSERT_NOT_REACHED(); | 540 ASSERT_NOT_REACHED(); |
| 536 } | 541 } |
| 537 | 542 |
| 538 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constra
inToNode) | 543 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constra
inToNode) |
| 539 { | 544 { |
| 540 ASSERT_NOT_REACHED(); | 545 ASSERT_NOT_REACHED(); |
| 541 return 0; | 546 return 0; |
| 542 } | 547 } |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 } | 715 } |
| 711 | 716 |
| 712 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const | 717 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const |
| 713 { | 718 { |
| 714 ASSERT_NOT_REACHED(); | 719 ASSERT_NOT_REACHED(); |
| 715 return WebString(); | 720 return WebString(); |
| 716 } | 721 } |
| 717 | 722 |
| 718 } // namespace blink | 723 } // namespace blink |
| 719 | 724 |
| OLD | NEW |