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

Side by Side Diff: cc/base/render_surface_filters.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 unified diff | Download patch
« no previous file with comments | « cc/base/render_surface_filters.h ('k') | cc/base/reverse_spiral_iterator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/output/render_surface_filters.h" 5 #include "cc/base/render_surface_filters.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
11 #include "cc/output/filter_operation.h" 11 #include "cc/base/filter_operation.h"
12 #include "cc/output/filter_operations.h" 12 #include "cc/base/filter_operations.h"
13 #include "third_party/skia/include/core/SkImageFilter.h" 13 #include "third_party/skia/include/core/SkImageFilter.h"
14 #include "third_party/skia/include/effects/SkAlphaThresholdFilter.h" 14 #include "third_party/skia/include/effects/SkAlphaThresholdFilter.h"
15 #include "third_party/skia/include/effects/SkBlurImageFilter.h" 15 #include "third_party/skia/include/effects/SkBlurImageFilter.h"
16 #include "third_party/skia/include/effects/SkColorFilterImageFilter.h" 16 #include "third_party/skia/include/effects/SkColorFilterImageFilter.h"
17 #include "third_party/skia/include/effects/SkColorMatrixFilter.h" 17 #include "third_party/skia/include/effects/SkColorMatrixFilter.h"
18 #include "third_party/skia/include/effects/SkComposeImageFilter.h" 18 #include "third_party/skia/include/effects/SkComposeImageFilter.h"
19 #include "third_party/skia/include/effects/SkDropShadowImageFilter.h" 19 #include "third_party/skia/include/effects/SkDropShadowImageFilter.h"
20 #include "third_party/skia/include/effects/SkMagnifierImageFilter.h" 20 #include "third_party/skia/include/effects/SkMagnifierImageFilter.h"
21 #include "ui/gfx/geometry/size_f.h" 21 #include "ui/gfx/geometry/size_f.h"
22 22
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 image_filter = std::move(alpha_filter); 290 image_filter = std::move(alpha_filter);
291 } 291 }
292 break; 292 break;
293 } 293 }
294 } 294 }
295 } 295 }
296 return image_filter; 296 return image_filter;
297 } 297 }
298 298
299 } // namespace cc 299 } // namespace cc
OLDNEW
« no previous file with comments | « cc/base/render_surface_filters.h ('k') | cc/base/reverse_spiral_iterator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698