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

Unified Diff: cc/paint/filter_display_item.h

Issue 2748263002: Move cc::DisplayItemList and related classes into cc/paint/ (Closed)
Patch Set: Merge branch 'master' into ccpaint Created 3 years, 9 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 | « cc/paint/drawing_display_item.cc ('k') | cc/paint/filter_display_item.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « cc/paint/drawing_display_item.cc ('k') | cc/paint/filter_display_item.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698