| 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/FrameView.h" | 8 #include "core/frame/FrameView.h" |
| 9 #include "core/frame/RemoteFrame.h" | 9 #include "core/frame/RemoteFrame.h" |
| 10 #include "core/frame/Settings.h" | 10 #include "core/frame/Settings.h" |
| (...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 ASSERT_NOT_REACHED(); | 689 ASSERT_NOT_REACHED(); |
| 690 return WebString(); | 690 return WebString(); |
| 691 } | 691 } |
| 692 | 692 |
| 693 WebRect WebRemoteFrameImpl::selectionBoundsRect() const | 693 WebRect WebRemoteFrameImpl::selectionBoundsRect() const |
| 694 { | 694 { |
| 695 ASSERT_NOT_REACHED(); | 695 ASSERT_NOT_REACHED(); |
| 696 return WebRect(); | 696 return WebRect(); |
| 697 } | 697 } |
| 698 | 698 |
| 699 void WebRemoteFrameImpl::countFeatureUse(WebFrame::Feature) |
| 700 { |
| 701 ASSERT_NOT_REACHED(); |
| 702 } |
| 703 |
| 699 bool WebRemoteFrameImpl::selectionStartHasSpellingMarkerFor(int from, int length
) const | 704 bool WebRemoteFrameImpl::selectionStartHasSpellingMarkerFor(int from, int length
) const |
| 700 { | 705 { |
| 701 ASSERT_NOT_REACHED(); | 706 ASSERT_NOT_REACHED(); |
| 702 return false; | 707 return false; |
| 703 } | 708 } |
| 704 | 709 |
| 705 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const | 710 WebString WebRemoteFrameImpl::layerTreeAsText(bool showDebugInfo) const |
| 706 { | 711 { |
| 707 ASSERT_NOT_REACHED(); | 712 ASSERT_NOT_REACHED(); |
| 708 return WebString(); | 713 return WebString(); |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 : WebRemoteFrame(scope) | 813 : WebRemoteFrame(scope) |
| 809 , m_frameClient(RemoteFrameClientImpl::create(this)) | 814 , m_frameClient(RemoteFrameClientImpl::create(this)) |
| 810 , m_client(client) | 815 , m_client(client) |
| 811 #if ENABLE(OILPAN) | 816 #if ENABLE(OILPAN) |
| 812 , m_selfKeepAlive(this) | 817 , m_selfKeepAlive(this) |
| 813 #endif | 818 #endif |
| 814 { | 819 { |
| 815 } | 820 } |
| 816 | 821 |
| 817 } // namespace blink | 822 } // namespace blink |
| OLD | NEW |