| 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 08e8b52a9a9d7a83da6c8f29fc0b6e00641f3cca..0324e500ab9310a482b7c677c6fd613af5afcac0 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -3468,7 +3468,7 @@ bool LayoutObject::isAllowedToModifyLayoutTreeStructure(Document& document)
|
| }
|
|
|
| DeprecatedDisableModifyLayoutTreeStructureAsserts::DeprecatedDisableModifyLayoutTreeStructureAsserts()
|
| - : m_disabler(gModifyLayoutTreeStructureAnyState, true)
|
| + : m_disabler(&gModifyLayoutTreeStructureAnyState, true)
|
| {
|
| }
|
|
|
| @@ -3478,7 +3478,7 @@ bool DeprecatedDisableModifyLayoutTreeStructureAsserts::canModifyLayoutTreeState
|
| }
|
|
|
| DisablePaintInvalidationStateAsserts::DisablePaintInvalidationStateAsserts()
|
| - : m_disabler(gDisablePaintInvalidationStateAsserts, true)
|
| + : m_disabler(&gDisablePaintInvalidationStateAsserts, true)
|
| {
|
| }
|
|
|
|
|