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

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

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 8 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 13 matching lines...) Expand all
24 #define FilterEffect_h 24 #define FilterEffect_h
25 25
26 #include "platform/PlatformExport.h" 26 #include "platform/PlatformExport.h"
27 #include "platform/geometry/FloatRect.h" 27 #include "platform/geometry/FloatRect.h"
28 #include "platform/geometry/IntRect.h" 28 #include "platform/geometry/IntRect.h"
29 #include "platform/graphics/Color.h" 29 #include "platform/graphics/Color.h"
30 #include "platform/graphics/ColorSpace.h" 30 #include "platform/graphics/ColorSpace.h"
31 #include "platform/heap/Handle.h" 31 #include "platform/heap/Handle.h"
32 #include "third_party/skia/include/core/SkImageFilter.h" 32 #include "third_party/skia/include/core/SkImageFilter.h"
33 #include "wtf/Noncopyable.h" 33 #include "wtf/Noncopyable.h"
34 #include "wtf/PassOwnPtr.h" 34 #include "wtf/PassRefPtr.h"
35 #include "wtf/RefCounted.h"
36 #include "wtf/RefPtr.h" 35 #include "wtf/RefPtr.h"
37 #include "wtf/Vector.h" 36 #include "wtf/Vector.h"
38 37
39 namespace blink { 38 namespace blink {
40 39
41 class Filter; 40 class Filter;
42 class FilterEffect; 41 class FilterEffect;
43 class TextStream; 42 class TextStream;
44 43
45 class SkiaImageFilterBuilder; 44 class SkiaImageFilterBuilder;
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 bool m_originTainted; 195 bool m_originTainted;
197 196
198 ColorSpace m_operatingColorSpace; 197 ColorSpace m_operatingColorSpace;
199 198
200 RefPtr<SkImageFilter> m_imageFilters[4]; 199 RefPtr<SkImageFilter> m_imageFilters[4];
201 }; 200 };
202 201
203 } // namespace blink 202 } // namespace blink
204 203
205 #endif // FilterEffect_h 204 #endif // FilterEffect_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698