OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
184 void OnContentViewCoreDestroyed() override; | 184 void OnContentViewCoreDestroyed() override; |
185 void OnAttachedToWindow() override; | 185 void OnAttachedToWindow() override; |
186 void OnDetachedFromWindow() override; | 186 void OnDetachedFromWindow() override; |
187 | 187 |
188 // DelegatedFrameEvictor implementation | 188 // DelegatedFrameEvictor implementation |
189 void EvictDelegatedFrame() override; | 189 void EvictDelegatedFrame() override; |
190 | 190 |
191 // StylusTextSelectorClient implementation. | 191 // StylusTextSelectorClient implementation. |
192 void OnStylusSelectBegin(float x0, float y0, float x1, float y1) override; | 192 void OnStylusSelectBegin(float x0, float y0, float x1, float y1) override; |
193 void OnStylusSelectUpdate(float x, float y) override; | 193 void OnStylusSelectUpdate(float x, float y) override; |
194 void OnStylusSelectEnd() override; | |
aelias_OOO_until_Jul13
2016/10/07 02:40:20
I think it's fine to keep the base class method an
amaralp
2016/10/14 00:53:07
Done.
| |
195 void OnStylusSelectTap(base::TimeTicks time, float x, float y) override; | 194 void OnStylusSelectTap(base::TimeTicks time, float x, float y) override; |
196 | 195 |
197 // ui::TouchSelectionControllerClient implementation. | 196 // ui::TouchSelectionControllerClient implementation. |
198 bool SupportsAnimation() const override; | 197 bool SupportsAnimation() const override; |
199 void SetNeedsAnimate() override; | 198 void SetNeedsAnimate() override; |
200 void MoveCaret(const gfx::PointF& position) override; | 199 void MoveCaret(const gfx::PointF& position) override; |
201 void MoveRangeSelectionExtent(const gfx::PointF& extent) override; | 200 void MoveRangeSelectionExtent(const gfx::PointF& extent) override; |
202 void SelectBetweenCoordinates(const gfx::PointF& base, | 201 void SelectBetweenCoordinates(const gfx::PointF& base, |
203 const gfx::PointF& extent) override; | 202 const gfx::PointF& extent) override; |
204 void OnSelectionEvent(ui::SelectionEventType event) override; | 203 void OnSelectionEvent(ui::SelectionEventType event) override; |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
375 gfx::Vector2dF last_scroll_offset_; | 374 gfx::Vector2dF last_scroll_offset_; |
376 | 375 |
377 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 376 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
378 | 377 |
379 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 378 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
380 }; | 379 }; |
381 | 380 |
382 } // namespace content | 381 } // namespace content |
383 | 382 |
384 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 383 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |