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

Unified Diff: cc/base/filter_operations_unittest.cc

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/base/filter_operations.cc ('k') | cc/base/histograms.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/filter_operations_unittest.cc
diff --git a/cc/output/filter_operations_unittest.cc b/cc/base/filter_operations_unittest.cc
similarity index 99%
rename from cc/output/filter_operations_unittest.cc
rename to cc/base/filter_operations_unittest.cc
index fe86feb4efb87e126971e515c234173690a0671f..9eb852db5e7788589555463a944176123f760770 100644
--- a/cc/output/filter_operations_unittest.cc
+++ b/cc/base/filter_operations_unittest.cc
@@ -4,7 +4,7 @@
#include <stddef.h>
-#include "cc/output/filter_operations.h"
+#include "cc/base/filter_operations.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/skia/include/effects/SkBlurImageFilter.h"
#include "third_party/skia/include/effects/SkDropShadowImageFilter.h"
@@ -396,11 +396,11 @@ TEST(FilterOperationsTest, SaveAndRestore) {
SAVE_RESTORE_AMOUNT(Opacity, OPACITY, 0.6f);
SAVE_RESTORE_AMOUNT(Blur, BLUR, 0.6f);
SAVE_RESTORE_AMOUNT(SaturatingBrightness, SATURATING_BRIGHTNESS, 0.6f);
- SAVE_RESTORE_OFFSET_AMOUNT_COLOR(
- DropShadow, DROP_SHADOW, gfx::Point(3, 4), 0.4f, 0xffffff00);
+ SAVE_RESTORE_OFFSET_AMOUNT_COLOR(DropShadow, DROP_SHADOW, gfx::Point(3, 4),
+ 0.4f, 0xffffff00);
- SkScalar matrix[20] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
- 17, 18, 19, 20};
+ SkScalar matrix[20] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20};
SAVE_RESTORE_MATRIX(ColorMatrix, COLOR_MATRIX, matrix);
SAVE_RESTORE_AMOUNT_INSET(Zoom, ZOOM, 0.5f, 32);
« no previous file with comments | « cc/base/filter_operations.cc ('k') | cc/base/histograms.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698