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

Unified Diff: cc/blink/web_layer_impl.h

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix ScrollAnimatorCompositorCoordinator for MSVC. 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: cc/blink/web_layer_impl.h
diff --git a/cc/blink/web_layer_impl.h b/cc/blink/web_layer_impl.h
index d0afa5f10310972c3b640f7d4d8e80940e71b55a..034acd9f347690ea2929981595fdee6016319c16 100644
--- a/cc/blink/web_layer_impl.h
+++ b/cc/blink/web_layer_impl.h
@@ -29,7 +29,6 @@
#include "third_party/skia/include/utils/SkMatrix44.h"
namespace blink {
-class WebFilterOperations;
struct WebFloatRect;
}
@@ -40,6 +39,8 @@ class ConvertableToTraceFormat;
}
namespace cc {
+class Animation;
+class FilterOperations;
class Layer;
class LayerSettings;
}
@@ -103,11 +104,11 @@ class WebLayerImpl : public blink::WebLayer {
void setUseParentBackfaceVisibility(bool visible) override;
void setBackgroundColor(blink::WebColor color) override;
blink::WebColor backgroundColor() const override;
- void setFilters(const blink::WebFilterOperations& filters) override;
- void setBackgroundFilters(const blink::WebFilterOperations& filters) override;
+ void setFilters(const cc::FilterOperations& filters) override;
+ void setBackgroundFilters(const cc::FilterOperations& filters) override;
void setAnimationDelegate(
blink::WebCompositorAnimationDelegate* delegate) override;
- bool addAnimation(blink::WebCompositorAnimation* animation) override;
+ bool addAnimation(cc::Animation* animation) override;
void removeAnimation(int animation_id) override;
void pauseAnimation(int animation_id, double time_offset) override;
void abortAnimation(int animation_id) override;

Powered by Google App Engine
This is Rietveld 408576698