Index: third_party/WebKit/Source/core/editing/SelectionTemplate.cpp |
diff --git a/third_party/WebKit/Source/core/editing/SelectionTemplate.cpp b/third_party/WebKit/Source/core/editing/SelectionTemplate.cpp |
index 0b9056a272805b0650f15fbd1fa299e20658f00b..853adf7b996dbab62cc426ed2eff2345e8f0bff4 100644 |
--- a/third_party/WebKit/Source/core/editing/SelectionTemplate.cpp |
+++ b/third_party/WebKit/Source/core/editing/SelectionTemplate.cpp |
@@ -16,7 +16,8 @@ SelectionTemplate<Strategy>::SelectionTemplate(const SelectionTemplate& other) |
m_affinity(other.m_affinity), |
m_granularity(other.m_granularity), |
m_hasTrailingWhitespace(other.m_hasTrailingWhitespace), |
- m_isDirectional(other.m_isDirectional) |
+ m_isDirectional(other.m_isDirectional), |
+ m_isHandleVisible(other.m_isHandleVisible) |
#if DCHECK_IS_ON() |
, |
m_domTreeVersion(other.m_domTreeVersion) |
@@ -45,7 +46,8 @@ bool SelectionTemplate<Strategy>::operator==( |
m_affinity == other.m_affinity && |
m_granularity == other.m_granularity && |
m_hasTrailingWhitespace == other.m_hasTrailingWhitespace && |
- m_isDirectional == other.m_isDirectional; |
+ m_isDirectional == other.m_isDirectional && |
+ m_isHandleVisible == other.m_isHandleVisible; |
} |
template <typename Strategy> |