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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/filters/SkiaImageFilterBuilder.h

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Fix copyrights and years. Created 4 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef SkiaImageFilterBuilder_h 26 #ifndef SkiaImageFilterBuilder_h
27 #define SkiaImageFilterBuilder_h 27 #define SkiaImageFilterBuilder_h
28 28
29 #include "platform/PlatformExport.h" 29 #include "platform/PlatformExport.h"
30 #include "platform/geometry/FloatSize.h" 30 #include "platform/geometry/FloatSize.h"
31 #include "platform/graphics/ColorSpace.h" 31 #include "platform/graphics/ColorSpace.h"
32 #include "platform/graphics/CompositorFilterOperations.h"
32 #include "platform/heap/Handle.h" 33 #include "platform/heap/Handle.h"
33 #include "public/platform/WebFilterOperations.h"
34 34
35 class SkImageFilter; 35 class SkImageFilter;
36 36
37 namespace blink { 37 namespace blink {
38 class AffineTransform; 38 class AffineTransform;
39 class FilterEffect; 39 class FilterEffect;
40 class FilterOperations; 40 class FilterOperations;
41 41
42 class PLATFORM_EXPORT SkiaImageFilterBuilder { 42 class PLATFORM_EXPORT SkiaImageFilterBuilder {
43 STACK_ALLOCATED(); 43 STACK_ALLOCATED();
44 public: 44 public:
45 ~SkiaImageFilterBuilder(); 45 ~SkiaImageFilterBuilder();
46 46
47 PassRefPtr<SkImageFilter> build(FilterEffect*, ColorSpace, bool requiresPMCo lorValidation = true); 47 PassRefPtr<SkImageFilter> build(FilterEffect*, ColorSpace, bool requiresPMCo lorValidation = true);
48 void buildFilterOperations(const FilterOperations&, WebFilterOperations*); 48 void buildFilterOperations(const FilterOperations&, CompositorFilterOperatio ns*);
49 PassRefPtr<SkImageFilter> buildTransform(const AffineTransform&, SkImageFilt er* input); 49 PassRefPtr<SkImageFilter> buildTransform(const AffineTransform&, SkImageFilt er* input);
50 50
51 PassRefPtr<SkImageFilter> transformColorSpace( 51 PassRefPtr<SkImageFilter> transformColorSpace(
52 SkImageFilter* input, ColorSpace srcColorSpace, ColorSpace dstColorSpace ); 52 SkImageFilter* input, ColorSpace srcColorSpace, ColorSpace dstColorSpace );
53 }; 53 };
54 54
55 } // namespace blink 55 } // namespace blink
56 56
57 #endif 57 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698