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

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

Issue 17388003: Remove unused includes from core/{editing,fileapi,history,html} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased 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/html/HTMLCollection.h ('k') | Source/core/html/HTMLDocument.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) 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 14 matching lines...) Expand all
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/HTMLElement.h" 31 #include "core/html/HTMLElement.h"
32 #include "core/html/HTMLObjectElement.h" 32 #include "core/html/HTMLObjectElement.h"
33 #include "core/html/HTMLOptionElement.h" 33 #include "core/html/HTMLOptionElement.h"
34 34
35 #include <utility>
36
37 namespace WebCore { 35 namespace WebCore {
38 36
39 using namespace HTMLNames; 37 using namespace HTMLNames;
40 38
41 static bool shouldOnlyIncludeDirectChildren(CollectionType type) 39 static bool shouldOnlyIncludeDirectChildren(CollectionType type)
42 { 40 {
43 switch (type) { 41 switch (type) {
44 case DocAll: 42 case DocAll:
45 case DocAnchors: 43 case DocAnchors:
46 case DocApplets: 44 case DocApplets:
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 683
686 void HTMLCollection::append(NodeCacheMap& map, const AtomicString& key, Element* element) 684 void HTMLCollection::append(NodeCacheMap& map, const AtomicString& key, Element* element)
687 { 685 {
688 OwnPtr<Vector<Element*> >& vector = map.add(key.impl(), nullptr).iterator->v alue; 686 OwnPtr<Vector<Element*> >& vector = map.add(key.impl(), nullptr).iterator->v alue;
689 if (!vector) 687 if (!vector)
690 vector = adoptPtr(new Vector<Element*>); 688 vector = adoptPtr(new Vector<Element*>);
691 vector->append(element); 689 vector->append(element);
692 } 690 }
693 691
694 } // namespace WebCore 692 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/HTMLCollection.h ('k') | Source/core/html/HTMLDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698