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

Unified Diff: third_party/WebKit/Source/core/editing/VisiblePosition.cpp

Issue 2354893002: Introduce VisiblePosition::isValid (Closed)
Patch Set: Further fix compile... Created 4 years, 3 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/core/editing/VisiblePosition.cpp
diff --git a/third_party/WebKit/Source/core/editing/VisiblePosition.cpp b/third_party/WebKit/Source/core/editing/VisiblePosition.cpp
index a9187c09d098b1deaa903fcad6f959e989ae41a8..2e012f6fded35540c5933a6f8a19a222c4ca322b 100644
--- a/third_party/WebKit/Source/core/editing/VisiblePosition.cpp
+++ b/third_party/WebKit/Source/core/editing/VisiblePosition.cpp
@@ -45,12 +45,18 @@ using namespace HTMLNames;
template <typename Strategy>
VisiblePositionTemplate<Strategy>::VisiblePositionTemplate()
+#if DCHECK_IS_ON()
+ : m_domTreeVersion(0)
yosin_UTC9 2016/09/20 13:55:51 We also need to track |Document::styleTreeVersion(
Xiaocheng 2016/09/21 06:31:49 I can't find |Document::styleTreeVersion()| in the
+#endif
{
}
template <typename Strategy>
VisiblePositionTemplate<Strategy>::VisiblePositionTemplate(const PositionWithAffinityTemplate<Strategy>& positionWithAffinity)
: m_positionWithAffinity(positionWithAffinity)
+#if DCHECK_IS_ON()
+ , m_domTreeVersion(positionWithAffinity.position().document()->domTreeVersion())
+#endif
{
}
@@ -214,6 +220,19 @@ void VisiblePositionTemplate<Strategy>::showTreeForThis() const
#endif
+template <typename Strategy>
+bool VisiblePositionTemplate<Strategy>::isValid() const
+{
+#if DCHECK_IS_ON()
+ if (isNull())
+ return true;
+ Document& document = *m_positionWithAffinity.position().document();
+ return m_domTreeVersion == document.domTreeVersion() && !document.needsLayoutTreeUpdate();
yosin_UTC9 2016/09/20 13:55:51 Fumm... If we check |Document::needsLayoutTreeUpda
Xiaocheng 2016/09/21 06:31:49 I think both dom tree version and |Document::needs
+#else
+ return true;
+#endif
+}
+
template class CORE_TEMPLATE_EXPORT VisiblePositionTemplate<EditingStrategy>;
template class CORE_TEMPLATE_EXPORT VisiblePositionTemplate<EditingInFlatTreeStrategy>;

Powered by Google App Engine
This is Rietveld 408576698