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

Side by Side Diff: Source/core/dom/ElementRareData.h

Issue 17480002: Remove unused includes from core/accessibility, core/css and core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased ; update <wtf/Foo.h> to "wtf/Foo.h" in changed files Created 7 years, 6 months 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 | « Source/core/dom/Element.h ('k') | Source/core/dom/Event.h » ('j') | 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) 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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 * 19 *
20 */ 20 */
21 21
22 #ifndef ElementRareData_h 22 #ifndef ElementRareData_h
23 #define ElementRareData_h 23 #define ElementRareData_h
24 24
25 #include "core/animation/Animation.h"
26 #include "core/dom/DatasetDOMStringMap.h" 25 #include "core/dom/DatasetDOMStringMap.h"
27 #include "core/dom/NamedNodeMap.h" 26 #include "core/dom/NamedNodeMap.h"
28 #include "core/dom/NodeRareData.h" 27 #include "core/dom/NodeRareData.h"
29 #include "core/dom/PseudoElement.h" 28 #include "core/dom/PseudoElement.h"
30 #include "core/dom/shadow/ElementShadow.h" 29 #include "core/dom/shadow/ElementShadow.h"
31 #include "core/html/ClassList.h" 30 #include "core/html/ClassList.h"
32 #include "core/html/ime/InputMethodContext.h" 31 #include "core/html/ime/InputMethodContext.h"
33 #include "core/rendering/style/StyleInheritedData.h" 32 #include "core/rendering/style/StyleInheritedData.h"
34 #include <wtf/OwnPtr.h> 33 #include "wtf/OwnPtr.h"
35 34
36 namespace WebCore { 35 namespace WebCore {
37 36
38 class Animation; 37 class Animation;
39 class HTMLElement; 38 class HTMLElement;
40 39
41 class ElementRareData : public NodeRareData { 40 class ElementRareData : public NodeRareData {
42 public: 41 public:
43 static PassOwnPtr<ElementRareData> create(RenderObject* renderer) { return a doptPtr(new ElementRareData(renderer)); } 42 static PassOwnPtr<ElementRareData> create(RenderObject* renderer) { return a doptPtr(new ElementRareData(renderer)); }
44 43
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 setChildrenAffectedByFirstChildRules(false); 274 setChildrenAffectedByFirstChildRules(false);
276 setChildrenAffectedByLastChildRules(false); 275 setChildrenAffectedByLastChildRules(false);
277 setChildrenAffectedByDirectAdjacentRules(false); 276 setChildrenAffectedByDirectAdjacentRules(false);
278 setChildrenAffectedByForwardPositionalRules(false); 277 setChildrenAffectedByForwardPositionalRules(false);
279 setChildrenAffectedByBackwardPositionalRules(false); 278 setChildrenAffectedByBackwardPositionalRules(false);
280 } 279 }
281 280
282 } // namespace 281 } // namespace
283 282
284 #endif // ElementRareData_h 283 #endif // ElementRareData_h
OLDNEW
« no previous file with comments | « Source/core/dom/Element.h ('k') | Source/core/dom/Event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698