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

Unified Diff: third_party/WebKit/Source/platform/graphics/GraphicsLayer.h

Issue 2335253002: Push CompositorFilterOperations creation out of GraphicsLayer (Closed)
Patch Set: The right FilterOperations Created 4 years, 3 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/platform/graphics/GraphicsLayer.h
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
index 924d4e4c704307ca061b710a22e06d2814025159..76bc9f16b53f049df7e1363fd5685a4bd9955b56 100644
--- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.h
@@ -41,7 +41,6 @@
#include "platform/graphics/GraphicsLayerDebugInfo.h"
#include "platform/graphics/ImageOrientation.h"
#include "platform/graphics/PaintInvalidationReason.h"
-#include "platform/graphics/filters/FilterOperations.h"
#include "platform/graphics/paint/DisplayItemClient.h"
#include "platform/graphics/paint/PaintController.h"
#include "platform/heap/Handle.h"
@@ -56,10 +55,11 @@
namespace blink {
+class CompositorFilterOperations;
class FloatRect;
class Image;
-class LinkHighlight;
class JSONObject;
+class LinkHighlight;
class PaintController;
class ScrollableArea;
class WebLayer;
@@ -171,8 +171,8 @@ public:
void setBlendMode(WebBlendMode);
void setIsRootForIsolatedGroup(bool);
- void setFilters(const FilterOperations&);
- void setBackdropFilters(const FilterOperations&);
+ void setFilters(CompositorFilterOperations);
+ void setBackdropFilters(CompositorFilterOperations);
void setFilterQuality(SkFilterQuality);

Powered by Google App Engine
This is Rietveld 408576698