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

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

Issue 336893002: Qualify the generated includes in core (part 3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebaseline. Created 6 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/HTMLImageLoader.cpp ('k') | Source/core/html/HTMLKeygenElement.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 11 matching lines...) Expand all
22 * You should have received a copy of the GNU Library General Public License 22 * You should have received a copy of the GNU Library General Public License
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"
33 #include "HTMLNames.h"
34 #include "RuntimeEnabledFeatures.h"
35 #include "bindings/v8/ExceptionMessages.h" 32 #include "bindings/v8/ExceptionMessages.h"
36 #include "bindings/v8/ExceptionState.h" 33 #include "bindings/v8/ExceptionState.h"
37 #include "bindings/v8/ScriptEventListener.h" 34 #include "bindings/v8/ScriptEventListener.h"
35 #include "core/CSSPropertyNames.h"
36 #include "core/HTMLNames.h"
38 #include "core/accessibility/AXObjectCache.h" 37 #include "core/accessibility/AXObjectCache.h"
39 #include "core/dom/Document.h" 38 #include "core/dom/Document.h"
40 #include "core/dom/ExceptionCode.h" 39 #include "core/dom/ExceptionCode.h"
41 #include "core/dom/IdTargetObserver.h" 40 #include "core/dom/IdTargetObserver.h"
42 #include "core/dom/shadow/ElementShadow.h" 41 #include "core/dom/shadow/ElementShadow.h"
43 #include "core/dom/shadow/InsertionPoint.h" 42 #include "core/dom/shadow/InsertionPoint.h"
44 #include "core/dom/shadow/ShadowRoot.h" 43 #include "core/dom/shadow/ShadowRoot.h"
45 #include "core/editing/FrameSelection.h" 44 #include "core/editing/FrameSelection.h"
46 #include "core/editing/SpellChecker.h" 45 #include "core/editing/SpellChecker.h"
47 #include "core/events/BeforeTextInsertedEvent.h" 46 #include "core/events/BeforeTextInsertedEvent.h"
(...skipping 18 matching lines...) Expand all
66 #include "core/html/forms/SearchInputType.h" 65 #include "core/html/forms/SearchInputType.h"
67 #include "core/html/parser/HTMLParserIdioms.h" 66 #include "core/html/parser/HTMLParserIdioms.h"
68 #include "core/html/shadow/ShadowElementNames.h" 67 #include "core/html/shadow/ShadowElementNames.h"
69 #include "core/page/Chrome.h" 68 #include "core/page/Chrome.h"
70 #include "core/page/ChromeClient.h" 69 #include "core/page/ChromeClient.h"
71 #include "core/rendering/RenderTextControlSingleLine.h" 70 #include "core/rendering/RenderTextControlSingleLine.h"
72 #include "core/rendering/RenderTheme.h" 71 #include "core/rendering/RenderTheme.h"
73 #include "platform/DateTimeChooser.h" 72 #include "platform/DateTimeChooser.h"
74 #include "platform/Language.h" 73 #include "platform/Language.h"
75 #include "platform/PlatformMouseEvent.h" 74 #include "platform/PlatformMouseEvent.h"
75 #include "platform/RuntimeEnabledFeatures.h"
76 #include "platform/text/PlatformLocale.h" 76 #include "platform/text/PlatformLocale.h"
77 #include "wtf/MathExtras.h" 77 #include "wtf/MathExtras.h"
78 78
79 namespace WebCore { 79 namespace WebCore {
80 80
81 using namespace HTMLNames; 81 using namespace HTMLNames;
82 82
83 class ListAttributeTargetObserver : public IdTargetObserver { 83 class ListAttributeTargetObserver : public IdTargetObserver {
84 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 84 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
85 public: 85 public:
(...skipping 1771 matching lines...) Expand 10 before | Expand all | Expand 10 after
1857 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer()); 1857 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer());
1858 } 1858 }
1859 #endif 1859 #endif
1860 1860
1861 bool HTMLInputElement::shouldDispatchFormControlChangeEvent(String& oldValue, St ring& newValue) 1861 bool HTMLInputElement::shouldDispatchFormControlChangeEvent(String& oldValue, St ring& newValue)
1862 { 1862 {
1863 return m_inputType->shouldDispatchFormControlChangeEvent(oldValue, newValue) ; 1863 return m_inputType->shouldDispatchFormControlChangeEvent(oldValue, newValue) ;
1864 } 1864 }
1865 1865
1866 } // namespace 1866 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLImageLoader.cpp ('k') | Source/core/html/HTMLKeygenElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698