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

Side by Side Diff: Source/core/html/HTMLInputElement.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/HTMLImportsController.cpp ('k') | Source/core/html/HTMLLegendElement.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 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org)
8 * Copyright (C) 2010 Google Inc. All rights reserved. 8 * Copyright (C) 2010 Google Inc. All rights reserved.
9 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 9 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
10 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 10 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
(...skipping 12 matching lines...) Expand all
23 * along with this library; see the file COPYING.LIB. If not, write to 23 * along with this library; see the file COPYING.LIB. If not, write to
24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 * Boston, MA 02110-1301, USA. 25 * Boston, MA 02110-1301, USA.
26 * 26 *
27 */ 27 */
28 28
29 #include "config.h" 29 #include "config.h"
30 #include "core/html/HTMLInputElement.h" 30 #include "core/html/HTMLInputElement.h"
31 31
32 #include "CSSPropertyNames.h" 32 #include "CSSPropertyNames.h"
33 #include "CSSValueKeywords.h"
34 #include "HTMLNames.h" 33 #include "HTMLNames.h"
35 #include "RuntimeEnabledFeatures.h" 34 #include "RuntimeEnabledFeatures.h"
36 #include "bindings/v8/ScriptEventListener.h" 35 #include "bindings/v8/ScriptEventListener.h"
37 #include "core/accessibility/AXObjectCache.h" 36 #include "core/accessibility/AXObjectCache.h"
38 #include "core/dom/BeforeTextInsertedEvent.h" 37 #include "core/dom/BeforeTextInsertedEvent.h"
39 #include "core/dom/Document.h" 38 #include "core/dom/Document.h"
40 #include "core/dom/EventNames.h" 39 #include "core/dom/EventNames.h"
41 #include "core/dom/ExceptionCode.h" 40 #include "core/dom/ExceptionCode.h"
42 #include "core/dom/IdTargetObserver.h" 41 #include "core/dom/IdTargetObserver.h"
43 #include "core/dom/KeyboardEvent.h" 42 #include "core/dom/KeyboardEvent.h"
(...skipping 17 matching lines...) Expand all
61 #include "core/html/InputType.h" 60 #include "core/html/InputType.h"
62 #include "core/html/SearchInputType.h" 61 #include "core/html/SearchInputType.h"
63 #include "core/html/parser/HTMLParserIdioms.h" 62 #include "core/html/parser/HTMLParserIdioms.h"
64 #include "core/page/Frame.h" 63 #include "core/page/Frame.h"
65 #include "core/page/FrameView.h" 64 #include "core/page/FrameView.h"
66 #include "core/page/UseCounter.h" 65 #include "core/page/UseCounter.h"
67 #include "core/platform/DateTimeChooser.h" 66 #include "core/platform/DateTimeChooser.h"
68 #include "core/platform/Language.h" 67 #include "core/platform/Language.h"
69 #include "core/platform/LocalizedStrings.h" 68 #include "core/platform/LocalizedStrings.h"
70 #include "core/platform/PlatformMouseEvent.h" 69 #include "core/platform/PlatformMouseEvent.h"
71 #include "core/platform/text/PlatformLocale.h"
72 #include "core/rendering/RenderTextControlSingleLine.h" 70 #include "core/rendering/RenderTextControlSingleLine.h"
73 #include "core/rendering/RenderTheme.h" 71 #include "core/rendering/RenderTheme.h"
74 #include <wtf/MathExtras.h> 72 #include "wtf/MathExtras.h"
75 #include <wtf/StdLibExtras.h>
76 73
77 using namespace std; 74 using namespace std;
78 75
79 namespace WebCore { 76 namespace WebCore {
80 77
81 using namespace HTMLNames; 78 using namespace HTMLNames;
82 79
83 class ListAttributeTargetObserver : IdTargetObserver { 80 class ListAttributeTargetObserver : IdTargetObserver {
84 WTF_MAKE_FAST_ALLOCATED; 81 WTF_MAKE_FAST_ALLOCATED;
85 public: 82 public:
(...skipping 1832 matching lines...) Expand 10 before | Expand all | Expand 10 after
1918 } 1915 }
1919 1916
1920 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 1917 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
1921 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() 1918 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer()
1922 { 1919 {
1923 return m_inputType->customStyleForRenderer(originalStyleForRenderer()); 1920 return m_inputType->customStyleForRenderer(originalStyleForRenderer());
1924 } 1921 }
1925 #endif 1922 #endif
1926 1923
1927 } // namespace 1924 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLImportsController.cpp ('k') | Source/core/html/HTMLLegendElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698