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

Unified Diff: sky/engine/public/platform/WebLayer.h

Issue 874633003: Remove WebCompositorSupport (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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 | « sky/engine/public/platform/WebFloatKeyframe.h ('k') | sky/engine/public/platform/WebLayerTreeView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/public/platform/WebLayer.h
diff --git a/sky/engine/public/platform/WebLayer.h b/sky/engine/public/platform/WebLayer.h
index 7398c07fc6f686a0e4cf0eaf497300d00686719d..fa357f563249a0b59f5c8bd9db3b57a0136af291 100644
--- a/sky/engine/public/platform/WebLayer.h
+++ b/sky/engine/public/platform/WebLayer.h
@@ -29,7 +29,6 @@
#include "sky/engine/public/platform/WebBlendMode.h"
#include "sky/engine/public/platform/WebColor.h"
#include "sky/engine/public/platform/WebCommon.h"
-#include "sky/engine/public/platform/WebCompositorAnimation.h"
#include "sky/engine/public/platform/WebFloatPoint3D.h"
#include "sky/engine/public/platform/WebPoint.h"
#include "sky/engine/public/platform/WebRect.h"
@@ -41,8 +40,6 @@ class SkMatrix44;
class SkImageFilter;
namespace blink {
-class WebCompositorAnimationDelegate;
-class WebFilterOperations;
class WebLayerScrollClient;
struct WebFloatPoint;
struct WebFloatRect;
@@ -113,27 +110,9 @@ public:
virtual void setBackgroundColor(WebColor) = 0;
virtual WebColor backgroundColor() const = 0;
- // Clear the filters in use by passing in a newly instantiated
- // WebFilterOperations object.
- virtual void setFilters(const WebFilterOperations&) = 0;
-
- // An animation delegate is notified when animations are started and
- // stopped. The WebLayer does not take ownership of the delegate, and it is
- // the responsibility of the client to reset the layer's delegate before
- // deleting the delegate.
- virtual void setAnimationDelegate(WebCompositorAnimationDelegate*) = 0;
-
-
- // Returns false if the animation cannot be added.
- // Takes ownership of the WebCompositorAnimation object.
- virtual bool addAnimation(WebCompositorAnimation*) = 0;
-
// Removes all animations with the given id.
virtual void removeAnimation(int animationId) = 0;
- // Removes all animations with the given id targeting the given property.
- virtual void removeAnimation(int animationId, WebCompositorAnimation::TargetProperty) = 0;
-
// Pauses all animations with the given id.
virtual void pauseAnimation(int animationId, double timeOffset) = 0;
« no previous file with comments | « sky/engine/public/platform/WebFloatKeyframe.h ('k') | sky/engine/public/platform/WebLayerTreeView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698