| Index: third_party/WebKit/Source/core/paint/PaintLayer.h
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.h b/third_party/WebKit/Source/core/paint/PaintLayer.h
|
| index 94b67753b437c1d7e505d78658d2ea0a855a96b8..0c55e1663d969e3a08fc3801bdfee6d480ffef79 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayer.h
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayer.h
|
| @@ -60,6 +60,7 @@
|
| #include "platform/graphics/SquashingDisallowedReasons.h"
|
| #include "public/platform/WebBlendMode.h"
|
| #include "wtf/Allocator.h"
|
| +#include "wtf/AutoReset.h"
|
| #include "wtf/PtrUtil.h"
|
| #include <memory>
|
|
|
| @@ -90,7 +91,7 @@ class CORE_EXPORT DisableCompositingQueryAsserts {
|
| public:
|
| DisableCompositingQueryAsserts();
|
| private:
|
| - TemporaryChange<CompositingQueryMode> m_disabler;
|
| + AutoReset<CompositingQueryMode> m_disabler;
|
| };
|
|
|
| struct PaintLayerRareData {
|
|
|