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

Unified Diff: third_party/WebKit/public/web/WebSelection.h

Issue 2201853002: Blink handle selection handle visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing aura problems Created 4 years, 5 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: third_party/WebKit/public/web/WebSelection.h
diff --git a/third_party/WebKit/public/web/WebSelection.h b/third_party/WebKit/public/web/WebSelection.h
index 1c334770580b70eece5ba1345b66ff6a363365fd..7c86c6905af3ecfb50d41e34be424fa5e862e543 100644
--- a/third_party/WebKit/public/web/WebSelection.h
+++ b/third_party/WebKit/public/web/WebSelection.h
@@ -32,6 +32,7 @@ public:
bool isEditable() const { return m_isEditable; }
bool isEmptyTextFormControl() const { return m_isEmptyTextFormControl; }
+ bool isHandleVisible() const { return m_isHandleVisible; }
private:
SelectionType selectionType() const { return m_selectionType; }
@@ -47,6 +48,8 @@ private:
// Whether the selection resides in an empty text form control. Note that
// this only applies to caret-type selections.
bool m_isEmptyTextFormControl;
+
+ bool m_isHandleVisible;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698