| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 const WebFloatSize& elasticOverscrollDelta, | 134 const WebFloatSize& elasticOverscrollDelta, |
| 135 float pageScaleDelta, | 135 float pageScaleDelta, |
| 136 float topControlsShownRatioDelta) override; | 136 float topControlsShownRatioDelta) override; |
| 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 commitText(const WebString& text, int relativeCaretPosition) override; |
| 145 bool confirmComposition(ConfirmCompositionBehavior selectionBehavior) overri
de; | 145 bool finishComposingText(ConfirmCompositionBehavior selectionBehavior) overr
ide; |
| 146 bool confirmComposition(const WebString& text) override; | |
| 147 WebRange compositionRange() override; | 146 WebRange compositionRange() override; |
| 148 WebTextInputInfo textInputInfo() override; | 147 WebTextInputInfo textInputInfo() override; |
| 149 WebTextInputType textInputType() override; | 148 WebTextInputType textInputType() override; |
| 150 WebColor backgroundColor() const override; | 149 WebColor backgroundColor() const override; |
| 151 WebPagePopup* pagePopup() const override; | 150 WebPagePopup* pagePopup() const override; |
| 152 bool selectionBounds(WebRect& anchor, WebRect& focus) const override; | 151 bool selectionBounds(WebRect& anchor, WebRect& focus) const override; |
| 153 bool selectionTextDirection(WebTextDirection& start, WebTextDirection& end)
const override; | 152 bool selectionTextDirection(WebTextDirection& start, WebTextDirection& end)
const override; |
| 154 bool isSelectionAnchorFirst() const override; | 153 bool isSelectionAnchorFirst() const override; |
| 155 WebRange caretOrSelectionRange() override; | 154 WebRange caretOrSelectionRange() override; |
| 156 void setTextDirection(WebTextDirection) override; | 155 void setTextDirection(WebTextDirection) override; |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 explicit WebViewImpl(WebViewClient*, WebPageVisibilityState); | 556 explicit WebViewImpl(WebViewClient*, WebPageVisibilityState); |
| 558 ~WebViewImpl() override; | 557 ~WebViewImpl() override; |
| 559 | 558 |
| 560 int textInputFlags(); | 559 int textInputFlags(); |
| 561 | 560 |
| 562 WebString inputModeOfFocusedElement(); | 561 WebString inputModeOfFocusedElement(); |
| 563 | 562 |
| 564 // Returns true if the event was actually processed. | 563 // Returns true if the event was actually processed. |
| 565 bool keyEventDefault(const WebKeyboardEvent&); | 564 bool keyEventDefault(const WebKeyboardEvent&); |
| 566 | 565 |
| 567 bool confirmComposition(const WebString& text, ConfirmCompositionBehavior); | |
| 568 | |
| 569 // Returns true if the view was scrolled. | 566 // Returns true if the view was scrolled. |
| 570 bool scrollViewWithKeyboard(int keyCode, int modifiers); | 567 bool scrollViewWithKeyboard(int keyCode, int modifiers); |
| 571 | 568 |
| 572 void hideSelectPopup(); | 569 void hideSelectPopup(); |
| 573 | 570 |
| 574 HitTestResult hitTestResultForRootFramePos(const IntPoint&); | 571 HitTestResult hitTestResultForRootFramePos(const IntPoint&); |
| 575 HitTestResult hitTestResultForViewportPos(const IntPoint&); | 572 HitTestResult hitTestResultForViewportPos(const IntPoint&); |
| 576 | 573 |
| 577 // Consolidate some common code between starting a drag over a target and | 574 // Consolidate some common code between starting a drag over a target and |
| 578 // updating a drag over a target. If we're starting a drag, |isEntering| | 575 // updating a drag over a target. If we're starting a drag, |isEntering| |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; | 777 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; |
| 781 }; | 778 }; |
| 782 | 779 |
| 783 // We have no ways to check if the specified WebView is an instance of | 780 // We have no ways to check if the specified WebView is an instance of |
| 784 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 781 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 785 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 782 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 786 | 783 |
| 787 } // namespace blink | 784 } // namespace blink |
| 788 | 785 |
| 789 #endif | 786 #endif |
| OLD | NEW |