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

Side by Side Diff: Source/core/html/HTMLSelectElement.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/HTMLProgressElement.cpp ('k') | Source/core/html/HTMLStyleElement.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) 2010 Nokia Corporation and/or its subsidiary(-ies). 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 1999 Antti Koivisto (koivisto@kde.org) 4 * (C) 1999 Antti Koivisto (koivisto@kde.org)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved.
7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
8 * Copyright (C) 2010 Google Inc. All rights reserved. 8 * Copyright (C) 2010 Google Inc. All rights reserved.
9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
10 * 10 *
(...skipping 11 matching lines...) Expand all
22 * along with this library; see the file COPYING.LIB. If not, write to 22 * along with this library; see the file COPYING.LIB. If not, write to
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 * Boston, MA 02110-1301, USA. 24 * Boston, MA 02110-1301, USA.
25 * 25 *
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 #include "core/html/HTMLSelectElement.h" 29 #include "core/html/HTMLSelectElement.h"
30 30
31 #include "HTMLNames.h" 31 #include "HTMLNames.h"
32 #include "bindings/v8/ScriptEventListener.h"
33 #include "core/accessibility/AXObjectCache.h" 32 #include "core/accessibility/AXObjectCache.h"
34 #include "core/dom/Attribute.h" 33 #include "core/dom/Attribute.h"
35 #include "core/dom/EventNames.h" 34 #include "core/dom/EventNames.h"
36 #include "core/dom/ExceptionCodePlaceholder.h" 35 #include "core/dom/ExceptionCodePlaceholder.h"
37 #include "core/dom/KeyboardEvent.h" 36 #include "core/dom/KeyboardEvent.h"
38 #include "core/dom/MouseEvent.h" 37 #include "core/dom/MouseEvent.h"
39 #include "core/dom/NodeRenderingContext.h" 38 #include "core/dom/NodeRenderingContext.h"
40 #include "core/dom/NodeTraversal.h" 39 #include "core/dom/NodeTraversal.h"
41 #include "core/html/FormController.h" 40 #include "core/html/FormController.h"
42 #include "core/html/FormDataList.h" 41 #include "core/html/FormDataList.h"
43 #include "core/html/HTMLFormElement.h" 42 #include "core/html/HTMLFormElement.h"
44 #include "core/html/HTMLOptGroupElement.h"
45 #include "core/html/HTMLOptionElement.h" 43 #include "core/html/HTMLOptionElement.h"
46 #include "core/html/HTMLOptionsCollection.h" 44 #include "core/html/HTMLOptionsCollection.h"
47 #include "core/page/Chrome.h"
48 #include "core/page/ChromeClient.h"
49 #include "core/page/EventHandler.h" 45 #include "core/page/EventHandler.h"
50 #include "core/page/Frame.h" 46 #include "core/page/Frame.h"
51 #include "core/page/Page.h" 47 #include "core/page/Page.h"
52 #include "core/page/SpatialNavigation.h" 48 #include "core/page/SpatialNavigation.h"
53 #include "core/platform/LocalizedStrings.h" 49 #include "core/platform/LocalizedStrings.h"
54 #include "core/platform/PlatformMouseEvent.h" 50 #include "core/platform/PlatformMouseEvent.h"
55 #include "core/rendering/RenderListBox.h" 51 #include "core/rendering/RenderListBox.h"
56 #include "core/rendering/RenderMenuList.h" 52 #include "core/rendering/RenderMenuList.h"
57 #include "core/rendering/RenderTheme.h" 53 #include "core/rendering/RenderTheme.h"
58 #include <wtf/text/StringBuilder.h> 54 #include <wtf/text/StringBuilder.h>
(...skipping 1512 matching lines...) Expand 10 before | Expand all | Expand 10 after
1571 } 1567 }
1572 1568
1573 void HTMLSelectElement::finishParsingChildren() 1569 void HTMLSelectElement::finishParsingChildren()
1574 { 1570 {
1575 HTMLFormControlElementWithState::finishParsingChildren(); 1571 HTMLFormControlElementWithState::finishParsingChildren();
1576 m_isParsingInProgress = false; 1572 m_isParsingInProgress = false;
1577 updateListItemSelectedStates(); 1573 updateListItemSelectedStates();
1578 } 1574 }
1579 1575
1580 } // namespace 1576 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLProgressElement.cpp ('k') | Source/core/html/HTMLStyleElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698