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

Side by Side Diff: Source/platform/graphics/filters/FilterEffect.h

Issue 858663002: Fix template angle bracket syntax in platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 11 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) 2008 Alex Mathews <possessedpenguinbob@gmail.com> 2 * Copyright (C) 2008 Alex Mathews <possessedpenguinbob@gmail.com>
3 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 3 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
5 * Copyright (C) 2013 Google Inc. All rights reserved. 5 * Copyright (C) 2013 Google Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 25 matching lines...) Expand all
36 #include "wtf/Vector.h" 36 #include "wtf/Vector.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class Filter; 40 class Filter;
41 class FilterEffect; 41 class FilterEffect;
42 class TextStream; 42 class TextStream;
43 43
44 class SkiaImageFilterBuilder; 44 class SkiaImageFilterBuilder;
45 45
46 typedef WillBeHeapVector<RefPtrWillBeMember<FilterEffect> > FilterEffectVector; 46 typedef WillBeHeapVector<RefPtrWillBeMember<FilterEffect>> FilterEffectVector;
47 47
48 enum FilterEffectType { 48 enum FilterEffectType {
49 FilterEffectTypeUnknown, 49 FilterEffectTypeUnknown,
50 FilterEffectTypeImage, 50 FilterEffectTypeImage,
51 FilterEffectTypeTile, 51 FilterEffectTypeTile,
52 FilterEffectTypeSourceInput 52 FilterEffectTypeSourceInput
53 }; 53 };
54 54
55 enum DetermineSubregionFlag { 55 enum DetermineSubregionFlag {
56 DetermineSubregionNone = 0, 56 DetermineSubregionNone = 0,
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 200
201 ColorSpace m_operatingColorSpace; 201 ColorSpace m_operatingColorSpace;
202 ColorSpace m_resultColorSpace; 202 ColorSpace m_resultColorSpace;
203 203
204 RefPtr<SkImageFilter> m_imageFilters[4]; 204 RefPtr<SkImageFilter> m_imageFilters[4];
205 }; 205 };
206 206
207 } // namespace blink 207 } // namespace blink
208 208
209 #endif // FilterEffect_h 209 #endif // FilterEffect_h
OLDNEW
« no previous file with comments | « Source/platform/graphics/ThreadSafeDataTransport.cpp ('k') | Source/platform/graphics/filters/FilterOperations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698