| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) | 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
| 4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. | 4 * Copyright (C) 2011 Adobe Systems Incorporated. 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 13 matching lines...) Expand all Loading... |
| 24 #include "RenderStyle.h" | 24 #include "RenderStyle.h" |
| 25 | 25 |
| 26 #include <algorithm> | 26 #include <algorithm> |
| 27 #include "CSSPropertyNames.h" | 27 #include "CSSPropertyNames.h" |
| 28 #include "ContentData.h" | 28 #include "ContentData.h" |
| 29 #include "CursorList.h" | 29 #include "CursorList.h" |
| 30 #include "QuotesData.h" | 30 #include "QuotesData.h" |
| 31 #include "RenderArena.h" | 31 #include "RenderArena.h" |
| 32 #include "RenderObject.h" | 32 #include "RenderObject.h" |
| 33 #include "RenderTheme.h" | 33 #include "RenderTheme.h" |
| 34 #include "ScaleTransformOperation.h" | |
| 35 #include "ShadowData.h" | 34 #include "ShadowData.h" |
| 36 #include "StyleImage.h" | 35 #include "StyleImage.h" |
| 37 #include "StyleInheritedData.h" | 36 #include "StyleInheritedData.h" |
| 38 #include "StyleResolver.h" | 37 #include "StyleResolver.h" |
| 39 #include "TextAutosizer.h" | 38 #include "TextAutosizer.h" |
| 40 #include "WebCoreMemoryInstrumentation.h" | 39 #include "WebCoreMemoryInstrumentation.h" |
| 41 #include "core/platform/graphics/Font.h" | 40 #include "core/platform/graphics/Font.h" |
| 42 #include "core/platform/graphics/FontSelector.h" | 41 #include "core/platform/graphics/FontSelector.h" |
| 42 #include "core/platform/graphics/transforms/ScaleTransformOperation.h" |
| 43 #include <wtf/MathExtras.h> | 43 #include <wtf/MathExtras.h> |
| 44 #include <wtf/MemoryInstrumentationVector.h> | 44 #include <wtf/MemoryInstrumentationVector.h> |
| 45 #include <wtf/MemoryObjectInfo.h> | 45 #include <wtf/MemoryObjectInfo.h> |
| 46 #include <wtf/StdLibExtras.h> | 46 #include <wtf/StdLibExtras.h> |
| 47 | 47 |
| 48 using namespace std; | 48 using namespace std; |
| 49 | 49 |
| 50 namespace WebCore { | 50 namespace WebCore { |
| 51 | 51 |
| 52 struct SameSizeAsBorderValue { | 52 struct SameSizeAsBorderValue { |
| (...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1585 info.addMember(inherited, "inherited"); | 1585 info.addMember(inherited, "inherited"); |
| 1586 info.addMember(m_cachedPseudoStyles, "cachedPseudoStyles"); | 1586 info.addMember(m_cachedPseudoStyles, "cachedPseudoStyles"); |
| 1587 #if ENABLE(SVG) | 1587 #if ENABLE(SVG) |
| 1588 info.addMember(m_svgStyle, "svgStyle"); | 1588 info.addMember(m_svgStyle, "svgStyle"); |
| 1589 #endif | 1589 #endif |
| 1590 info.addMember(inherited_flags, "inherited_flags"); | 1590 info.addMember(inherited_flags, "inherited_flags"); |
| 1591 info.addMember(noninherited_flags, "noninherited_flags"); | 1591 info.addMember(noninherited_flags, "noninherited_flags"); |
| 1592 } | 1592 } |
| 1593 | 1593 |
| 1594 } // namespace WebCore | 1594 } // namespace WebCore |
| OLD | NEW |