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

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: Attempt to fix build issue by updating dependencies of 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 652c7083354b8742e31f17c2ec36f0a5e908576a..6ab13341cdf0d23cc5a19d6987f8fa35f1ce570a 100644
--- a/third_party/WebKit/Source/core/dom/Element.cpp
+++ b/third_party/WebKit/Source/core/dom/Element.cpp
@@ -996,10 +996,10 @@ void Element::decrementCompositorProxiedProperties(uint32_t mutableProperties)
uint32_t Element::compositorMutableProperties() const
{
if (!hasRareData())
- return WebCompositorMutablePropertyNone;
+ return CompositorMutablePropertyNone;
if (CompositorProxiedPropertySet* set = elementRareData()->proxiedPropertyCounts())
return set->proxiedProperties();
- return WebCompositorMutablePropertyNone;
+ return CompositorMutablePropertyNone;
}
bool Element::hasNonEmptyLayoutSize() const

Powered by Google App Engine
This is Rietveld 408576698