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

Side by Side Diff: Source/core/html/HTMLCollection.cpp

Issue 15422005: Remove unused includes from core/html .cpp files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 years, 7 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/html/HTMLCanvasElement.cpp ('k') | Source/core/html/HTMLDataListElement.cpp » ('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) 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 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All r ights reserved. 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All r ights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 10 matching lines...) Expand all
21 */ 21 */
22 22
23 #include "config.h" 23 #include "config.h"
24 #include "core/html/HTMLCollection.h" 24 #include "core/html/HTMLCollection.h"
25 25
26 #include "HTMLNames.h" 26 #include "HTMLNames.h"
27 #include "core/dom/ClassNodeList.h" 27 #include "core/dom/ClassNodeList.h"
28 #include "core/dom/NodeList.h" 28 #include "core/dom/NodeList.h"
29 #include "core/dom/NodeRareData.h" 29 #include "core/dom/NodeRareData.h"
30 #include "core/dom/NodeTraversal.h" 30 #include "core/dom/NodeTraversal.h"
31 #include "core/html/HTMLDocument.h"
32 #include "core/html/HTMLElement.h" 31 #include "core/html/HTMLElement.h"
33 #include "core/html/HTMLObjectElement.h" 32 #include "core/html/HTMLObjectElement.h"
34 #include "core/html/HTMLOptionElement.h" 33 #include "core/html/HTMLOptionElement.h"
35 34
36 #include <utility> 35 #include <utility>
37 36
38 namespace WebCore { 37 namespace WebCore {
39 38
40 using namespace HTMLNames; 39 using namespace HTMLNames;
41 40
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 685
687 void HTMLCollection::append(NodeCacheMap& map, const AtomicString& key, Element* element) 686 void HTMLCollection::append(NodeCacheMap& map, const AtomicString& key, Element* element)
688 { 687 {
689 OwnPtr<Vector<Element*> >& vector = map.add(key.impl(), nullptr).iterator->v alue; 688 OwnPtr<Vector<Element*> >& vector = map.add(key.impl(), nullptr).iterator->v alue;
690 if (!vector) 689 if (!vector)
691 vector = adoptPtr(new Vector<Element*>); 690 vector = adoptPtr(new Vector<Element*>);
692 vector->append(element); 691 vector->append(element);
693 } 692 }
694 693
695 } // namespace WebCore 694 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/HTMLCanvasElement.cpp ('k') | Source/core/html/HTMLDataListElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698