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

Unified Diff: content/browser/renderer_host/input/stylus_text_selector.h

Issue 2201853002: Blink handle selection handle visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: try running even rebaseline tests Created 4 years, 2 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: content/browser/renderer_host/input/stylus_text_selector.h
diff --git a/content/browser/renderer_host/input/stylus_text_selector.h b/content/browser/renderer_host/input/stylus_text_selector.h
index 05d2f1803822ae3f4dbe27fea06ab87b211e5977..8b4bdfe53f2528e6e66ba4c04e9f704e94a8aabf 100644
--- a/content/browser/renderer_host/input/stylus_text_selector.h
+++ b/content/browser/renderer_host/input/stylus_text_selector.h
@@ -31,7 +31,6 @@ class CONTENT_EXPORT StylusTextSelectorClient {
// (x0, y0) and (x1, y1) indicate the bounds of the initial selection.
virtual void OnStylusSelectBegin(float x0, float y0, float x1, float y1) = 0;
virtual void OnStylusSelectUpdate(float x, float y) = 0;
- virtual void OnStylusSelectEnd() = 0;
aelias_OOO_until_Jul13 2016/10/07 02:40:20 Begin/End pairs are a common pattern and it's weir
amaralp 2016/10/14 00:53:07 Done.
virtual void OnStylusSelectTap(base::TimeTicks time, float x, float y) = 0;
};
@@ -67,7 +66,6 @@ class CONTENT_EXPORT StylusTextSelector : public ui::SimpleGestureListener {
bool text_selection_triggered_;
bool secondary_button_pressed_;
bool dragging_;
- bool dragged_;
aelias_OOO_until_Jul13 2016/10/07 02:40:20 Please move this cleanup to separate patch to keep
amaralp 2016/10/14 00:53:07 Done.
float anchor_x_;
float anchor_y_;
std::unique_ptr<ui::GestureDetector> gesture_detector_;

Powered by Google App Engine
This is Rietveld 408576698