| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
| 5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. | 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 class ElementAnimations; | 46 class ElementAnimations; |
| 47 class Attr; | 47 class Attr; |
| 48 class Attribute; | 48 class Attribute; |
| 49 class CSSStyleDeclaration; | 49 class CSSStyleDeclaration; |
| 50 class ClientRect; | 50 class ClientRect; |
| 51 class ClientRectList; | 51 class ClientRectList; |
| 52 class CompositorMutation; | 52 class CompositorMutation; |
| 53 class CustomElementDefinition; | 53 class CustomElementDefinition; |
| 54 class DOMStringMap; | 54 class DOMStringMap; |
| 55 class DOMTokenList; | 55 class DOMTokenList; |
| 56 class Dictionary; | |
| 57 class ElementRareData; | 56 class ElementRareData; |
| 58 class ElementShadow; | 57 class ElementShadow; |
| 59 class ExceptionState; | 58 class ExceptionState; |
| 60 class Image; | 59 class Image; |
| 61 class InputDeviceCapabilities; | 60 class InputDeviceCapabilities; |
| 62 class IntSize; | |
| 63 class Locale; | 61 class Locale; |
| 64 class MutableStylePropertySet; | 62 class MutableStylePropertySet; |
| 63 class NamedNodeMap; |
| 65 class NodeIntersectionObserverData; | 64 class NodeIntersectionObserverData; |
| 66 class PropertySetCSSStyleDeclaration; | |
| 67 class PseudoElement; | 65 class PseudoElement; |
| 68 class ResizeObservation; | 66 class ResizeObservation; |
| 69 class ResizeObserver; | 67 class ResizeObserver; |
| 70 class ScrollState; | 68 class ScrollState; |
| 71 class ScrollStateCallback; | 69 class ScrollStateCallback; |
| 72 class ScrollToOptions; | 70 class ScrollToOptions; |
| 73 class ShadowRoot; | 71 class ShadowRoot; |
| 74 class ShadowRootInit; | 72 class ShadowRootInit; |
| 75 class StylePropertySet; | 73 class StylePropertySet; |
| 76 class StylePropertyMap; | 74 class StylePropertyMap; |
| (...skipping 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1159 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 1157 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 1160 static T* create(const QualifiedName&, Document&) | 1158 static T* create(const QualifiedName&, Document&) |
| 1161 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 1159 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 1162 T* T::create(const QualifiedName& tagName, Document& document) { \ | 1160 T* T::create(const QualifiedName& tagName, Document& document) { \ |
| 1163 return new T(tagName, document); \ | 1161 return new T(tagName, document); \ |
| 1164 } | 1162 } |
| 1165 | 1163 |
| 1166 } // namespace blink | 1164 } // namespace blink |
| 1167 | 1165 |
| 1168 #endif // Element_h | 1166 #endif // Element_h |
| OLD | NEW |