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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp

Issue 2528113002: [PAUSED] Add a scope for disallowing style update when calling hasEditableStyle (Closed)
Patch Set: use DISALLOW_COPY_AND_ASSIGN Created 4 years, 1 month 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
« no previous file with comments | « third_party/WebKit/Source/core/dom/DocumentLifecycle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp
diff --git a/third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp b/third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp
index 5c8e37179a9f95e5d3ab833ae8d9b1bfb1979a42..4bd5db55e2d7fe7852b75ac60518602fb4969803 100644
--- a/third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp
+++ b/third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp
@@ -81,7 +81,10 @@ DocumentLifecycle::DisallowThrottlingScope::~DisallowThrottlingScope() {
}
DocumentLifecycle::DocumentLifecycle()
- : m_state(Uninitialized), m_detachCount(0), m_disallowTransitionCount(0) {}
+ : m_state(Uninitialized),
+ m_detachCount(0),
+ m_disallowTransitionCount(0),
+ m_disallowStyleRecalcCount(0) {}
DocumentLifecycle::~DocumentLifecycle() {}
« no previous file with comments | « third_party/WebKit/Source/core/dom/DocumentLifecycle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698