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

Unified Diff: cc/blink/web_layer_impl.cc

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
« no previous file with comments | « cc/blink/web_compositor_mutable_state_provider_impl.cc ('k') | cc/layers/layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/blink/web_layer_impl.cc
diff --git a/cc/blink/web_layer_impl.cc b/cc/blink/web_layer_impl.cc
index a901b15f0ccec9e34349234fa24c14a5736e766a..992157bf007bd4b6cf4226d346a81052480780ca 100644
--- a/cc/blink/web_layer_impl.cc
+++ b/cc/blink/web_layer_impl.cc
@@ -16,7 +16,6 @@
#include "base/threading/thread_checker.h"
#include "base/trace_event/trace_event_impl.h"
#include "cc/animation/animation.h"
-#include "cc/animation/mutable_properties.h"
#include "cc/base/region.h"
#include "cc/base/switches.h"
#include "cc/blink/web_animation_impl.h"
@@ -27,7 +26,6 @@
#include "cc/layers/layer_position_constraint.h"
#include "cc/layers/layer_settings.h"
#include "cc/trees/layer_tree_host.h"
-#include "third_party/WebKit/public/platform/WebCompositorMutableProperties.h"
#include "third_party/WebKit/public/platform/WebFloatPoint.h"
#include "third_party/WebKit/public/platform/WebFloatRect.h"
#include "third_party/WebKit/public/platform/WebLayerPositionConstraint.h"
@@ -563,35 +561,6 @@ uint64_t WebLayerImpl::elementId() const {
return layer_->element_id();
}
-static_assert(
- static_cast<cc::MutableProperty>(blink::WebCompositorMutablePropertyNone) ==
- cc::kMutablePropertyNone,
- "MutableProperty and WebCompositorMutableProperty enums must match");
-
-static_assert(
- static_cast<cc::MutableProperty>(
- blink::WebCompositorMutablePropertyOpacity) ==
- cc::kMutablePropertyOpacity,
- "MutableProperty and WebCompositorMutableProperty enums must match");
-
-static_assert(
- static_cast<cc::MutableProperty>(
- blink::WebCompositorMutablePropertyScrollLeft) ==
- cc::kMutablePropertyScrollLeft,
- "MutableProperty and WebCompositorMutableProperty enums must match");
-
-static_assert(
- static_cast<cc::MutableProperty>(
- blink::WebCompositorMutablePropertyScrollTop) ==
- cc::kMutablePropertyScrollTop,
- "MutableProperty and WebCompositorMutableProperty enums must match");
-
-static_assert(
- static_cast<cc::MutableProperty>(
- blink::WebCompositorMutablePropertyTransform) ==
- cc::kMutablePropertyTransform,
- "MutableProperty and WebCompositorMutableProperty enums must match");
-
void WebLayerImpl::setCompositorMutableProperties(uint32_t properties) {
layer_->SetMutableProperties(properties);
}
« no previous file with comments | « cc/blink/web_compositor_mutable_state_provider_impl.cc ('k') | cc/layers/layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698