| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 case FIRST_LETTER: | 240 case FIRST_LETTER: |
| 241 return m_generatedFirstLetter.get(); | 241 return m_generatedFirstLetter.get(); |
| 242 default: | 242 default: |
| 243 return 0; | 243 return 0; |
| 244 } | 244 } |
| 245 } | 245 } |
| 246 | 246 |
| 247 } // namespace | 247 } // namespace |
| 248 | 248 |
| 249 #endif // ElementRareData_h | 249 #endif // ElementRareData_h |
| OLD | NEW |