Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: third_party/WebKit/Source/core/dom/Element.h

Issue 2460243002: blink: Cleanup Document.h class forward declarations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing class forward decl in AXObjectCache.h Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
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; 56 class Dictionary;
57 class ElementRareData; 57 class ElementRareData;
58 class ElementShadow; 58 class ElementShadow;
59 class ExceptionState; 59 class ExceptionState;
60 class Image; 60 class Image;
61 class InputDeviceCapabilities;
61 class IntSize; 62 class IntSize;
62 class Locale; 63 class Locale;
63 class MutableStylePropertySet; 64 class MutableStylePropertySet;
64 class NodeIntersectionObserverData; 65 class NodeIntersectionObserverData;
65 class PropertySetCSSStyleDeclaration; 66 class PropertySetCSSStyleDeclaration;
66 class PseudoElement; 67 class PseudoElement;
67 class ResizeObservation; 68 class ResizeObservation;
68 class ResizeObserver; 69 class ResizeObserver;
69 class ScrollState; 70 class ScrollState;
70 class ScrollStateCallback; 71 class ScrollStateCallback;
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1158 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 1159 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
1159 static T* create(const QualifiedName&, Document&) 1160 static T* create(const QualifiedName&, Document&)
1160 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 1161 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
1161 T* T::create(const QualifiedName& tagName, Document& document) { \ 1162 T* T::create(const QualifiedName& tagName, Document& document) { \
1162 return new T(tagName, document); \ 1163 return new T(tagName, document); \
1163 } 1164 }
1164 1165
1165 } // namespace blink 1166 } // namespace blink
1166 1167
1167 #endif // Element_h 1168 #endif // Element_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698