OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 WebCompositeAndReadbackAsyncCallback*) override; | 86 WebCompositeAndReadbackAsyncCallback*) override; |
87 void themeChanged() override; | 87 void themeChanged() override; |
88 WebInputEventResult handleInputEvent(const WebInputEvent&) override; | 88 WebInputEventResult handleInputEvent(const WebInputEvent&) override; |
89 void setCursorVisibilityState(bool isVisible) override; | 89 void setCursorVisibilityState(bool isVisible) override; |
90 bool hasTouchEventHandlersAt(const WebPoint&) override; | 90 bool hasTouchEventHandlersAt(const WebPoint&) override; |
91 | 91 |
92 void applyViewportDeltas(const WebFloatSize& visualViewportDelta, | 92 void applyViewportDeltas(const WebFloatSize& visualViewportDelta, |
93 const WebFloatSize& mainFrameDelta, | 93 const WebFloatSize& mainFrameDelta, |
94 const WebFloatSize& elasticOverscrollDelta, | 94 const WebFloatSize& elasticOverscrollDelta, |
95 float pageScaleDelta, | 95 float pageScaleDelta, |
96 float topControlsDelta) override; | 96 float browserControlsDelta) override; |
97 void mouseCaptureLost() override; | 97 void mouseCaptureLost() override; |
98 void setFocus(bool enable) override; | 98 void setFocus(bool enable) override; |
99 bool setComposition(const WebString& text, | 99 bool setComposition(const WebString& text, |
100 const WebVector<WebCompositionUnderline>& underlines, | 100 const WebVector<WebCompositionUnderline>& underlines, |
101 int selectionStart, | 101 int selectionStart, |
102 int selectionEnd) override; | 102 int selectionEnd) override; |
103 bool commitText(const WebString& text, int relativeCaretPosition) override; | 103 bool commitText(const WebString& text, int relativeCaretPosition) override; |
104 bool finishComposingText( | 104 bool finishComposingText( |
105 ConfirmCompositionBehavior selectionBehavior) override; | 105 ConfirmCompositionBehavior selectionBehavior) override; |
106 WebRange compositionRange() override; | 106 WebRange compositionRange() override; |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 | 257 |
258 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, | 258 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, |
259 WebFrameWidgetBase, | 259 WebFrameWidgetBase, |
260 widget, | 260 widget, |
261 widget->forSubframe(), | 261 widget->forSubframe(), |
262 widget.forSubframe()); | 262 widget.forSubframe()); |
263 | 263 |
264 } // namespace blink | 264 } // namespace blink |
265 | 265 |
266 #endif | 266 #endif |
OLD | NEW |