Chromium Code Reviews| 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), |
|
yosin_UTC9
2016/11/25 09:52:37
How about moving these initialization into class d
Xiaocheng
2016/11/25 10:05:32
No objection, but that's a separate issue, though.
|
| + m_detachCount(0), |
| + m_disallowTransitionCount(0), |
| + m_disallowStyleRecalcCount(0) {} |
| DocumentLifecycle::~DocumentLifecycle() {} |