| 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 #ifndef WebRemoteFrameImpl_h | 5 #ifndef WebRemoteFrameImpl_h |
| 6 #define WebRemoteFrameImpl_h | 6 #define WebRemoteFrameImpl_h |
| 7 | 7 |
| 8 #include "public/web/WebRemoteFrame.h" | 8 #include "public/web/WebRemoteFrame.h" |
| 9 #include "wtf/RefCounted.h" | 9 #include "wtf/RefCounted.h" |
| 10 | 10 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 virtual WebString selectionAsText() const OVERRIDE; | 111 virtual WebString selectionAsText() const OVERRIDE; |
| 112 virtual WebString selectionAsMarkup() const OVERRIDE; | 112 virtual WebString selectionAsMarkup() const OVERRIDE; |
| 113 virtual bool selectWordAroundCaret() OVERRIDE; | 113 virtual bool selectWordAroundCaret() OVERRIDE; |
| 114 virtual void selectRange(const WebPoint& base, const WebPoint& extent) OVERR
IDE; | 114 virtual void selectRange(const WebPoint& base, const WebPoint& extent) OVERR
IDE; |
| 115 virtual void selectRange(const WebRange&) OVERRIDE; | 115 virtual void selectRange(const WebRange&) OVERRIDE; |
| 116 virtual void moveRangeSelection(const WebPoint& base, const WebPoint& extent
) OVERRIDE; | 116 virtual void moveRangeSelection(const WebPoint& base, const WebPoint& extent
) OVERRIDE; |
| 117 virtual void moveCaretSelection(const WebPoint&) OVERRIDE; | 117 virtual void moveCaretSelection(const WebPoint&) OVERRIDE; |
| 118 virtual bool setEditableSelectionOffsets(int start, int end) OVERRIDE; | 118 virtual bool setEditableSelectionOffsets(int start, int end) OVERRIDE; |
| 119 virtual bool setCompositionFromExistingText(int compositionStart, int compos
itionEnd, const WebVector<WebCompositionUnderline>& underlines) OVERRIDE; | 119 virtual bool setCompositionFromExistingText(int compositionStart, int compos
itionEnd, const WebVector<WebCompositionUnderline>& underlines) OVERRIDE; |
| 120 virtual void extendSelectionAndDelete(int before, int after) OVERRIDE; | 120 virtual void extendSelectionAndDelete(int before, int after) OVERRIDE; |
| 121 virtual void addStyleSheetByURL(const WebString& url) OVERRIDE; |
| 121 virtual void setCaretVisible(bool) OVERRIDE; | 122 virtual void setCaretVisible(bool) OVERRIDE; |
| 122 virtual int printBegin(const WebPrintParams&, const WebNode& constrainToNode
) OVERRIDE; | 123 virtual int printBegin(const WebPrintParams&, const WebNode& constrainToNode
) OVERRIDE; |
| 123 virtual float printPage(int pageToPrint, WebCanvas*) OVERRIDE; | 124 virtual float printPage(int pageToPrint, WebCanvas*) OVERRIDE; |
| 124 virtual float getPrintPageShrink(int page) OVERRIDE; | 125 virtual float getPrintPageShrink(int page) OVERRIDE; |
| 125 virtual void printEnd() OVERRIDE; | 126 virtual void printEnd() OVERRIDE; |
| 126 virtual bool isPrintScalingDisabledForPlugin(const WebNode&) OVERRIDE; | 127 virtual bool isPrintScalingDisabledForPlugin(const WebNode&) OVERRIDE; |
| 127 virtual bool hasCustomPageSizeStyle(int pageIndex) OVERRIDE; | 128 virtual bool hasCustomPageSizeStyle(int pageIndex) OVERRIDE; |
| 128 virtual bool isPageBoxVisible(int pageIndex) OVERRIDE; | 129 virtual bool isPageBoxVisible(int pageIndex) OVERRIDE; |
| 129 virtual void pageSizeAndMarginsInPixels( | 130 virtual void pageSizeAndMarginsInPixels( |
| 130 int pageIndex, | 131 int pageIndex, |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 virtual WebString markerTextForListItem(const WebElement&) const OVERRIDE; | 164 virtual WebString markerTextForListItem(const WebElement&) const OVERRIDE; |
| 164 virtual WebRect selectionBoundsRect() const OVERRIDE; | 165 virtual WebRect selectionBoundsRect() const OVERRIDE; |
| 165 | 166 |
| 166 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const
OVERRIDE; | 167 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const
OVERRIDE; |
| 167 virtual WebString layerTreeAsText(bool showDebugInfo = false) const OVERRIDE
; | 168 virtual WebString layerTreeAsText(bool showDebugInfo = false) const OVERRIDE
; |
| 168 }; | 169 }; |
| 169 | 170 |
| 170 } // namespace blink | 171 } // namespace blink |
| 171 | 172 |
| 172 #endif // WebRemoteFrameImpl_h | 173 #endif // WebRemoteFrameImpl_h |
| OLD | NEW |