OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008 David Smith <catfish.man@gmail.com> | 3 * Copyright (C) 2008 David Smith <catfish.man@gmail.com> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "core/animation/ElementAnimations.h" | 25 #include "core/animation/ElementAnimations.h" |
26 #include "core/dom/Attr.h" | 26 #include "core/dom/Attr.h" |
27 #include "core/dom/DatasetDOMStringMap.h" | 27 #include "core/dom/DatasetDOMStringMap.h" |
28 #include "core/dom/NamedNodeMap.h" | 28 #include "core/dom/NamedNodeMap.h" |
29 #include "core/dom/NodeRareData.h" | 29 #include "core/dom/NodeRareData.h" |
30 #include "core/dom/PseudoElement.h" | 30 #include "core/dom/PseudoElement.h" |
31 #include "core/dom/custom/CustomElementDefinition.h" | 31 #include "core/dom/custom/CustomElementDefinition.h" |
32 #include "core/dom/shadow/ElementShadow.h" | 32 #include "core/dom/shadow/ElementShadow.h" |
33 #include "core/html/ClassList.h" | 33 #include "core/html/ClassList.h" |
34 #include "core/html/ime/InputMethodContext.h" | 34 #include "core/html/ime/InputMethodContext.h" |
35 #include "core/layout/style/StyleInheritedData.h" | 35 #include "core/style/StyleInheritedData.h" |
36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
37 #include "wtf/OwnPtr.h" | 37 #include "wtf/OwnPtr.h" |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 class HTMLElement; | 41 class HTMLElement; |
42 | 42 |
43 class ElementRareData : public NodeRareData { | 43 class ElementRareData : public NodeRareData { |
44 public: | 44 public: |
45 static ElementRareData* create(LayoutObject* renderer) | 45 static ElementRareData* create(LayoutObject* renderer) |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 case FIRST_LETTER: | 237 case FIRST_LETTER: |
238 return m_generatedFirstLetter.get(); | 238 return m_generatedFirstLetter.get(); |
239 default: | 239 default: |
240 return 0; | 240 return 0; |
241 } | 241 } |
242 } | 242 } |
243 | 243 |
244 } // namespace | 244 } // namespace |
245 | 245 |
246 #endif // ElementRareData_h | 246 #endif // ElementRareData_h |
OLD | NEW |