| Index: third_party/WebKit/Source/core/dom/Element.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
|
| index 3a09355d61c796e0833f719d4d19cf9a74a89941..4c2187a47ef856e809ae5a8e93fb3be3244a8e1a 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -123,6 +123,7 @@
|
| #include "platform/EventDispatchForbiddenScope.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
| #include "platform/UserGestureIndicator.h"
|
| +#include "platform/graphics/CompositorMutableProperties.h"
|
| #include "platform/scroll/ScrollableArea.h"
|
| #include "wtf/BitVector.h"
|
| #include "wtf/HashFunctions.h"
|
| @@ -996,10 +997,10 @@ void Element::decrementCompositorProxiedProperties(uint32_t mutableProperties)
|
| uint32_t Element::compositorMutableProperties() const
|
| {
|
| if (!hasRareData())
|
| - return WebCompositorMutablePropertyNone;
|
| + return CompositorMutableProperty::kNone;
|
| if (CompositorProxiedPropertySet* set = elementRareData()->proxiedPropertyCounts())
|
| return set->proxiedProperties();
|
| - return WebCompositorMutablePropertyNone;
|
| + return CompositorMutableProperty::kNone;
|
| }
|
|
|
| bool Element::hasNonEmptyLayoutSize() const
|
|
|