Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Unified Diff: third_party/WebKit/Source/core/dom/Element.cpp

Issue 1599673002: compositor-worker: Remove code from cc_blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix blink_platform_unittests Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698