OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 void mouseCaptureLost() override; | 137 void mouseCaptureLost() override; |
138 void setFocus(bool enable) override; | 138 void setFocus(bool enable) override; |
139 bool setComposition( | 139 bool setComposition( |
140 const WebString& text, | 140 const WebString& text, |
141 const WebVector<WebCompositionUnderline>& underlines, | 141 const WebVector<WebCompositionUnderline>& underlines, |
142 int selectionStart, | 142 int selectionStart, |
143 int selectionEnd) override; | 143 int selectionEnd) override; |
144 bool confirmComposition() override; | 144 bool confirmComposition() override; |
145 bool confirmComposition(ConfirmCompositionBehavior selectionBehavior) overri
de; | 145 bool confirmComposition(ConfirmCompositionBehavior selectionBehavior) overri
de; |
146 bool confirmComposition(const WebString& text) override; | 146 bool confirmComposition(const WebString& text) override; |
| 147 bool setEditableSelectionOffsets(int start, int end) override; |
| 148 bool setCompositionFromExistingText(int compositionStart, int compositionEnd
, const WebVector<WebCompositionUnderline>& underlines) override; |
| 149 void extendSelectionAndDelete(int before, int after) override; |
| 150 |
147 WebRange compositionRange() override; | 151 WebRange compositionRange() override; |
148 WebTextInputInfo textInputInfo() override; | 152 WebTextInputInfo textInputInfo() override; |
149 WebTextInputType textInputType() override; | 153 WebTextInputType textInputType() override; |
150 WebColor backgroundColor() const override; | 154 WebColor backgroundColor() const override; |
151 WebPagePopup* pagePopup() const override; | 155 WebPagePopup* pagePopup() const override; |
152 bool selectionBounds(WebRect& anchor, WebRect& focus) const override; | 156 bool selectionBounds(WebRect& anchor, WebRect& focus) const override; |
153 bool selectionTextDirection(WebTextDirection& start, WebTextDirection& end)
const override; | 157 bool selectionTextDirection(WebTextDirection& start, WebTextDirection& end)
const override; |
154 bool isSelectionAnchorFirst() const override; | 158 bool isSelectionAnchorFirst() const override; |
155 WebRange caretOrSelectionRange() override; | 159 WebRange caretOrSelectionRange() override; |
156 void setTextDirection(WebTextDirection) override; | 160 void setTextDirection(WebTextDirection) override; |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
779 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; | 783 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; |
780 }; | 784 }; |
781 | 785 |
782 // We have no ways to check if the specified WebView is an instance of | 786 // We have no ways to check if the specified WebView is an instance of |
783 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 787 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
784 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 788 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
785 | 789 |
786 } // namespace blink | 790 } // namespace blink |
787 | 791 |
788 #endif | 792 #endif |
OLD | NEW |