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

Unified Diff: ui/touch_selection/touch_selection_controller.h

Issue 698253004: Reland: Implement Aura side of unified touch text selection for contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improved tap-on-selection tests Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: ui/touch_selection/touch_selection_controller.h
diff --git a/ui/touch_selection/touch_selection_controller.h b/ui/touch_selection/touch_selection_controller.h
index 68edee077d078159bed2cee2a6dd410111fbf0cf..3d4b81b021370b505b1c59b0d2f9cd2ca8e3aafe 100644
--- a/ui/touch_selection/touch_selection_controller.h
+++ b/ui/touch_selection/touch_selection_controller.h
@@ -42,10 +42,11 @@ class UI_TOUCH_SELECTION_EXPORT TouchSelectionController
bool show_on_tap_for_empty_editable);
~TouchSelectionController() override;
- // To be called when the selection bounds have changed.
+ // To be called when the selection bounds info has been updated.
// Note that such updates will trigger handle updates only if preceded
// by an appropriate call to allow automatic showing.
- void OnSelectionBoundsChanged(const SelectionBound& start,
+ // Return value specifies if anything has been updated or not.
+ bool OnSelectionBoundsUpdated(const SelectionBound& start,
const SelectionBound& end);
// Allows touch-dragging of the handle.
@@ -82,6 +83,12 @@ class UI_TOUCH_SELECTION_EXPORT TouchSelectionController
// Returns true if an animation is active and requires further ticking.
bool Animate(base::TimeTicks animate_time);
+ const SelectionBound& start() const { return start_; }
+ const SelectionBound& end() const { return end_; }
+
+ bool is_insertion_active() const { return is_insertion_active_; }
+ bool is_selection_active() const { return is_selection_active_; }
+
private:
enum InputEventType { TAP, LONG_PRESS, INPUT_EVENT_TYPE_NONE };

Powered by Google App Engine
This is Rietveld 408576698