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

Unified Diff: ui/touch_selection/touch_selection_controller_aura.cc

Issue 829913004: WIP: Plumbing through text selection granularity control support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@unified_text_selection_diff
Patch Set: Missing file. Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/touch_selection/touch_selection_controller_aura.h ('k') | ui/touch_selection/ui_touch_selection.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/touch_selection/touch_selection_controller_aura.cc
diff --git a/ui/touch_selection/touch_selection_controller_aura.cc b/ui/touch_selection/touch_selection_controller_aura.cc
index 3bdb26cec4e4c65d0100a009839466b1ad8fc88f..68bb7c3c062dcd818c25ff78ced6af1931109d79 100644
--- a/ui/touch_selection/touch_selection_controller_aura.cc
+++ b/ui/touch_selection/touch_selection_controller_aura.cc
@@ -208,8 +208,9 @@ void TouchSelectionControllerAura::MoveCaret(const gfx::PointF& position) {
}
void TouchSelectionControllerAura::MoveRangeSelectionExtent(
- const gfx::PointF& extent) {
- client_->MoveRangeSelectionExtent(extent);
+ const gfx::PointF& extent,
+ ui::TextSelectionGranularity granularity) {
+ client_->MoveRangeSelectionExtent(extent, granularity);
}
void TouchSelectionControllerAura::SelectBetweenCoordinates(
« no previous file with comments | « ui/touch_selection/touch_selection_controller_aura.h ('k') | ui/touch_selection/ui_touch_selection.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698