| 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 * Copyright (C) 2012 Google Inc. All rights reserved. | 5 * Copyright (C) 2012 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 10 matching lines...) Expand all Loading... |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #ifndef CSSToStyleMap_h | 23 #ifndef CSSToStyleMap_h |
| 24 #define CSSToStyleMap_h | 24 #define CSSToStyleMap_h |
| 25 | 25 |
| 26 #include "core/CSSPropertyNames.h" | 26 #include "core/CSSPropertyNames.h" |
| 27 #include "core/animation/Timing.h" | 27 #include "core/animation/Timing.h" |
| 28 #include "core/animation/css/CSSTransitionData.h" | 28 #include "core/animation/css/CSSTransitionData.h" |
| 29 #include "core/style/ComputedStyleConstants.h" | 29 #include "core/style/ComputedStyleConstants.h" |
| 30 #include "platform/animation/TimingFunction.h" | 30 #include "platform/animation/TimingFunction.h" |
| 31 #include "wtf/Allocator.h" | 31 #include "platform/wtf/Allocator.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 class FillLayer; | 35 class FillLayer; |
| 36 class CSSValue; | 36 class CSSValue; |
| 37 class StyleResolverState; | 37 class StyleResolverState; |
| 38 class NinePieceImage; | 38 class NinePieceImage; |
| 39 class BorderImageLengthBox; | 39 class BorderImageLengthBox; |
| 40 | 40 |
| 41 class CSSToStyleMap { | 41 class CSSToStyleMap { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 static BorderImageLengthBox MapNinePieceImageQuad(StyleResolverState&, | 90 static BorderImageLengthBox MapNinePieceImageQuad(StyleResolverState&, |
| 91 const CSSValue&); | 91 const CSSValue&); |
| 92 static void MapNinePieceImageRepeat(StyleResolverState&, | 92 static void MapNinePieceImageRepeat(StyleResolverState&, |
| 93 const CSSValue&, | 93 const CSSValue&, |
| 94 NinePieceImage&); | 94 NinePieceImage&); |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 } // namespace blink | 97 } // namespace blink |
| 98 | 98 |
| 99 #endif | 99 #endif |
| OLD | NEW |