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

Side by Side Diff: Source/core/html/HTMLOptionElement.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/HTMLOptGroupElement.cpp ('k') | Source/core/html/HTMLOutputElement.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 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 5 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
6 * Copyright (C) 2004, 2005, 2006, 2010 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2010 Apple Inc. All rights reserved.
7 * Copyright (C) 2010 Google Inc. All rights reserved. 7 * Copyright (C) 2010 Google Inc. All rights reserved.
8 * Copyright (C) 2011 Motorola Mobility, Inc. All rights reserved. 8 * Copyright (C) 2011 Motorola Mobility, Inc. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 11 matching lines...) Expand all
22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 * Boston, MA 02110-1301, USA. 23 * Boston, MA 02110-1301, USA.
24 * 24 *
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "core/html/HTMLOptionElement.h" 28 #include "core/html/HTMLOptionElement.h"
29 29
30 #include "HTMLNames.h" 30 #include "HTMLNames.h"
31 #include "core/css/resolver/StyleResolver.h" 31 #include "core/css/resolver/StyleResolver.h"
32 #include "core/dom/Attribute.h"
33 #include "core/dom/Document.h" 32 #include "core/dom/Document.h"
34 #include "core/dom/ExceptionCode.h"
35 #include "core/dom/NodeRenderStyle.h" 33 #include "core/dom/NodeRenderStyle.h"
36 #include "core/dom/NodeRenderingContext.h"
37 #include "core/dom/NodeTraversal.h" 34 #include "core/dom/NodeTraversal.h"
38 #include "core/dom/ScriptElement.h" 35 #include "core/dom/ScriptElement.h"
39 #include "core/dom/Text.h" 36 #include "core/dom/Text.h"
40 #include "core/html/HTMLDataListElement.h" 37 #include "core/html/HTMLDataListElement.h"
41 #include "core/html/HTMLSelectElement.h" 38 #include "core/html/HTMLSelectElement.h"
42 #include "core/html/parser/HTMLParserIdioms.h" 39 #include "core/html/parser/HTMLParserIdioms.h"
43 #include "core/rendering/RenderMenuList.h"
44 #include "core/rendering/RenderTheme.h" 40 #include "core/rendering/RenderTheme.h"
45 #include <wtf/StdLibExtras.h> 41 #include <wtf/StdLibExtras.h>
46 #include <wtf/text/StringBuilder.h> 42 #include <wtf/text/StringBuilder.h>
47 #include <wtf/Vector.h> 43 #include <wtf/Vector.h>
48 44
49 namespace WebCore { 45 namespace WebCore {
50 46
51 using namespace HTMLNames; 47 using namespace HTMLNames;
52 48
53 HTMLOptionElement::HTMLOptionElement(const QualifiedName& tagName, Document* doc ument) 49 HTMLOptionElement::HTMLOptionElement(const QualifiedName& tagName, Document* doc ument)
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 398
403 const HTMLOptionElement* toHTMLOptionElement(const Node* node) 399 const HTMLOptionElement* toHTMLOptionElement(const Node* node)
404 { 400 {
405 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(optionTag)); 401 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(optionTag));
406 return static_cast<const HTMLOptionElement*>(node); 402 return static_cast<const HTMLOptionElement*>(node);
407 } 403 }
408 404
409 #endif 405 #endif
410 406
411 } // namespace 407 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLOptGroupElement.cpp ('k') | Source/core/html/HTMLOutputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698