| Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| index ccef0e4d686fbe0047f7d4cccab686dc226671cd..40fa629cea8bc42bafe91e25c4561dce3b3ca025 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -3469,7 +3469,7 @@ bool LayoutObject::isAllowedToModifyLayoutTreeStructure(Document& document)
|
| }
|
|
|
| DeprecatedDisableModifyLayoutTreeStructureAsserts::DeprecatedDisableModifyLayoutTreeStructureAsserts()
|
| - : m_disabler(gModifyLayoutTreeStructureAnyState, true)
|
| + : m_disabler(&gModifyLayoutTreeStructureAnyState, true)
|
| {
|
| }
|
|
|
| @@ -3479,7 +3479,7 @@ bool DeprecatedDisableModifyLayoutTreeStructureAsserts::canModifyLayoutTreeState
|
| }
|
|
|
| DisablePaintInvalidationStateAsserts::DisablePaintInvalidationStateAsserts()
|
| - : m_disabler(gDisablePaintInvalidationStateAsserts, true)
|
| + : m_disabler(&gDisablePaintInvalidationStateAsserts, true)
|
| {
|
| }
|
|
|
|
|