| Index: third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp b/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp
|
| index 2f0263c058bde6b245843ccd58fd6b9ccf059c4c..c2357565ec036534c6694d6a3f277cb4303295dc 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGDocumentExtensions.cpp
|
| @@ -26,7 +26,7 @@
|
| #include "core/layout/svg/SVGResourcesCache.h"
|
| #include "core/svg/SVGSVGElement.h"
|
| #include "core/svg/animation/SMILTimeContainer.h"
|
| -#include "wtf/TemporaryChange.h"
|
| +#include "wtf/AutoReset.h"
|
| #include "wtf/text/AtomicString.h"
|
|
|
| namespace blink {
|
| @@ -319,7 +319,7 @@ void SVGDocumentExtensions::invalidateSVGRootsWithRelativeLengthDescendents(Subt
|
| {
|
| ASSERT(!m_inRelativeLengthSVGRootsInvalidation);
|
| #if ENABLE(ASSERT)
|
| - TemporaryChange<bool> inRelativeLengthSVGRootsChange(m_inRelativeLengthSVGRootsInvalidation, true);
|
| + AutoReset<bool> inRelativeLengthSVGRootsChange(&m_inRelativeLengthSVGRootsInvalidation, true);
|
| #endif
|
|
|
| for (SVGSVGElement* element : m_relativeLengthSVGRoots)
|
|
|