| Index: cc/paint/filter_display_item.h
|
| diff --git a/cc/playback/filter_display_item.h b/cc/paint/filter_display_item.h
|
| similarity index 80%
|
| rename from cc/playback/filter_display_item.h
|
| rename to cc/paint/filter_display_item.h
|
| index 054fed5e53d27b7b7e32170f8822d828aeb381e5..9781dd296d7a48f1dc894b56689c2f08134fb201 100644
|
| --- a/cc/playback/filter_display_item.h
|
| +++ b/cc/paint/filter_display_item.h
|
| @@ -2,24 +2,24 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_
|
| -#define CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_
|
| +#ifndef CC_PAINT_FILTER_DISPLAY_ITEM_H_
|
| +#define CC_PAINT_FILTER_DISPLAY_ITEM_H_
|
|
|
| #include <stddef.h>
|
|
|
| #include <memory>
|
|
|
| #include "base/memory/ptr_util.h"
|
| -#include "cc/base/cc_export.h"
|
| -#include "cc/output/filter_operations.h"
|
| -#include "cc/playback/display_item.h"
|
| +#include "cc/paint/display_item.h"
|
| +#include "cc/paint/filter_operations.h"
|
| +#include "cc/paint/paint_export.h"
|
| #include "ui/gfx/geometry/rect_f.h"
|
|
|
| class SkCanvas;
|
|
|
| namespace cc {
|
|
|
| -class CC_EXPORT FilterDisplayItem : public DisplayItem {
|
| +class CC_PAINT_EXPORT FilterDisplayItem : public DisplayItem {
|
| public:
|
| FilterDisplayItem(const FilterOperations& filters,
|
| const gfx::RectF& bounds,
|
| @@ -48,7 +48,7 @@ class CC_EXPORT FilterDisplayItem : public DisplayItem {
|
| gfx::PointF origin_;
|
| };
|
|
|
| -class CC_EXPORT EndFilterDisplayItem : public DisplayItem {
|
| +class CC_PAINT_EXPORT EndFilterDisplayItem : public DisplayItem {
|
| public:
|
| EndFilterDisplayItem();
|
| ~EndFilterDisplayItem() override;
|
| @@ -65,4 +65,4 @@ class CC_EXPORT EndFilterDisplayItem : public DisplayItem {
|
|
|
| } // namespace cc
|
|
|
| -#endif // CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_
|
| +#endif // CC_PAINT_FILTER_DISPLAY_ITEM_H_
|
|
|