| 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);
|
|
|
|
|