Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_android.h

Issue 2201853002: Blink handle selection handle visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: format Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 void OnContentViewCoreDestroyed() override; 173 void OnContentViewCoreDestroyed() override;
174 void OnAttachedToWindow() override; 174 void OnAttachedToWindow() override;
175 void OnDetachedFromWindow() override; 175 void OnDetachedFromWindow() override;
176 176
177 // DelegatedFrameEvictor implementation 177 // DelegatedFrameEvictor implementation
178 void EvictDelegatedFrame() override; 178 void EvictDelegatedFrame() override;
179 179
180 // StylusTextSelectorClient implementation. 180 // StylusTextSelectorClient implementation.
181 void OnStylusSelectBegin(float x0, float y0, float x1, float y1) override; 181 void OnStylusSelectBegin(float x0, float y0, float x1, float y1) override;
182 void OnStylusSelectUpdate(float x, float y) override; 182 void OnStylusSelectUpdate(float x, float y) override;
183 void OnStylusSelectEnd() override; 183 void OnStylusSelectEnd() override {};
184 void OnStylusSelectTap(base::TimeTicks time, float x, float y) override; 184 void OnStylusSelectTap(base::TimeTicks time, float x, float y) override;
185 185
186 // ui::TouchSelectionControllerClient implementation. 186 // ui::TouchSelectionControllerClient implementation.
187 bool SupportsAnimation() const override; 187 bool SupportsAnimation() const override;
188 void SetNeedsAnimate() override; 188 void SetNeedsAnimate() override;
189 void MoveCaret(const gfx::PointF& position) override; 189 void MoveCaret(const gfx::PointF& position) override;
190 void MoveRangeSelectionExtent(const gfx::PointF& extent) override; 190 void MoveRangeSelectionExtent(const gfx::PointF& extent) override;
191 void SelectBetweenCoordinates(const gfx::PointF& base, 191 void SelectBetweenCoordinates(const gfx::PointF& base,
192 const gfx::PointF& extent) override; 192 const gfx::PointF& extent) override;
193 void OnSelectionEvent(ui::SelectionEventType event) override; 193 void OnSelectionEvent(ui::SelectionEventType event) override;
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 gfx::Vector2dF last_scroll_offset_; 396 gfx::Vector2dF last_scroll_offset_;
397 397
398 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; 398 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_;
399 399
400 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 400 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
401 }; 401 };
402 402
403 } // namespace content 403 } // namespace content
404 404
405 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 405 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698