| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011 Apple 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef FilterEffectBuilder_h | 26 #ifndef FilterEffectBuilder_h |
| 27 #define FilterEffectBuilder_h | 27 #define FilterEffectBuilder_h |
| 28 | 28 |
| 29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
| 30 #include "platform/graphics/filters/FilterEffect.h" | 30 #include "platform/graphics/filters/FilterEffect.h" |
| 31 #include "platform/heap/Handle.h" | 31 #include "platform/heap/Handle.h" |
| 32 #include "wtf/PassRefPtr.h" | |
| 33 #include "wtf/RefCounted.h" | |
| 34 #include "wtf/RefPtr.h" | |
| 35 #include "wtf/Vector.h" | 32 #include "wtf/Vector.h" |
| 36 | 33 |
| 37 class SkPaint; | 34 class SkPaint; |
| 38 | 35 |
| 39 namespace blink { | 36 namespace blink { |
| 40 | 37 |
| 41 class Filter; | 38 class Filter; |
| 42 class FilterOperations; | 39 class FilterOperations; |
| 43 class Element; | 40 class Element; |
| 44 | 41 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 62 private: | 59 private: |
| 63 FilterEffectBuilder(); | 60 FilterEffectBuilder(); |
| 64 | 61 |
| 65 Member<FilterEffect> m_lastEffect; | 62 Member<FilterEffect> m_lastEffect; |
| 66 HeapVector<Member<Filter>> m_referenceFilters; | 63 HeapVector<Member<Filter>> m_referenceFilters; |
| 67 }; | 64 }; |
| 68 | 65 |
| 69 } // namespace blink | 66 } // namespace blink |
| 70 | 67 |
| 71 #endif // FilterEffectBuilder_h | 68 #endif // FilterEffectBuilder_h |
| OLD | NEW |