| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. |
| 4 * All rights reserved. | 4 * All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #include "core/CSSValueKeywords.h" | 26 #include "core/CSSValueKeywords.h" |
| 27 #include "core/style/FilterOperations.h" | 27 #include "core/style/FilterOperations.h" |
| 28 #include "platform/heap/Handle.h" | 28 #include "platform/heap/Handle.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 class CSSValue; | 32 class CSSValue; |
| 33 class StyleResolverState; | 33 class StyleResolverState; |
| 34 | 34 |
| 35 class FilterOperationResolver { | 35 class CORE_EXPORT FilterOperationResolver { |
| 36 STATIC_ONLY(FilterOperationResolver); | 36 STATIC_ONLY(FilterOperationResolver); |
| 37 | 37 |
| 38 public: | 38 public: |
| 39 static FilterOperation::OperationType filterOperationForType(CSSValueID); | 39 static FilterOperation::OperationType filterOperationForType(CSSValueID); |
| 40 static FilterOperations createFilterOperations(StyleResolverState&, | 40 static FilterOperations createFilterOperations(StyleResolverState*, |
| 41 const CSSValue&); | 41 const CSSValue&); |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 } // namespace blink | 44 } // namespace blink |
| 45 | 45 |
| 46 #endif // FilterOperationResolver_h | 46 #endif // FilterOperationResolver_h |
| OLD | NEW |