| 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 71%
|
| rename from cc/playback/filter_display_item.h
|
| rename to cc/paint/filter_display_item.h
|
| index e574b6598daabe9384775fb1e594bb3e5c936a6d..c4f18dcbc85cbf1a57bcbd8ae8244384e4a0a949 100644
|
| --- a/cc/playback/filter_display_item.h
|
| +++ b/cc/paint/filter_display_item.h
|
| @@ -2,18 +2,18 @@
|
| // 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 "cc/base/cc_export.h"
|
| -#include "cc/output/filter_operations.h"
|
| -#include "cc/playback/display_item.h"
|
| +#include "cc/base/filter_operations.h"
|
| +#include "cc/paint/display_item.h"
|
| +#include "cc/paint/paint_export.h"
|
| #include "ui/gfx/geometry/point_f.h"
|
| #include "ui/gfx/geometry/rect_f.h"
|
|
|
| namespace cc {
|
|
|
| -class CC_EXPORT FilterDisplayItem : public DisplayItem {
|
| +class CC_PAINT_EXPORT FilterDisplayItem : public DisplayItem {
|
| public:
|
| FilterDisplayItem(const FilterOperations& filters,
|
| const gfx::RectF& bounds,
|
| @@ -32,7 +32,7 @@ class CC_EXPORT FilterDisplayItem : public DisplayItem {
|
| const gfx::PointF origin;
|
| };
|
|
|
| -class CC_EXPORT EndFilterDisplayItem : public DisplayItem {
|
| +class CC_PAINT_EXPORT EndFilterDisplayItem : public DisplayItem {
|
| public:
|
| EndFilterDisplayItem();
|
| ~EndFilterDisplayItem() override;
|
| @@ -42,4 +42,4 @@ class CC_EXPORT EndFilterDisplayItem : public DisplayItem {
|
|
|
| } // namespace cc
|
|
|
| -#endif // CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_
|
| +#endif // CC_PAINT_FILTER_DISPLAY_ITEM_H_
|
|
|