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

Unified Diff: third_party/WebKit/Source/web/WebSelection.cpp

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/Source/web/WebSelection.cpp
diff --git a/third_party/WebKit/Source/web/WebSelection.cpp b/third_party/WebKit/Source/web/WebSelection.cpp
index f043d2e3251c58cb21bd5220099116dcf2ff4a91..1b3bc9d31aa52513b9459013ddeed9332f0d8bf7 100644
--- a/third_party/WebKit/Source/web/WebSelection.cpp
+++ b/third_party/WebKit/Source/web/WebSelection.cpp
@@ -38,6 +38,7 @@ WebSelection::WebSelection(const CompositedSelection& selection)
, m_end(getWebSelectionBound(selection, false))
, m_isEditable(selection.isEditable)
, m_isEmptyTextFormControl(selection.isEmptyTextFormControl)
+ , m_isHandleVisible(selection.isHandleVisible)
{
}
@@ -47,6 +48,7 @@ WebSelection::WebSelection(const WebSelection& other)
, m_end(other.m_end)
, m_isEditable(other.m_isEditable)
, m_isEmptyTextFormControl(other.m_isEmptyTextFormControl)
+ , m_isHandleVisible(other.m_isHandleVisible)
{
}

Powered by Google App Engine
This is Rietveld 408576698