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

Side by Side Diff: third_party/WebKit/Source/core/html/forms/NumberInputType.cpp

Issue 1922473002: Remove unnecessary ExceptionCode.h inclusion (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 16 matching lines...) Expand all
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 #include "core/html/forms/NumberInputType.h" 32 #include "core/html/forms/NumberInputType.h"
33 33
34 #include "bindings/core/v8/ExceptionState.h" 34 #include "bindings/core/v8/ExceptionState.h"
35 #include "core/HTMLNames.h" 35 #include "core/HTMLNames.h"
36 #include "core/InputTypeNames.h" 36 #include "core/InputTypeNames.h"
37 #include "core/dom/ExceptionCode.h"
38 #include "core/events/BeforeTextInsertedEvent.h" 37 #include "core/events/BeforeTextInsertedEvent.h"
39 #include "core/events/KeyboardEvent.h" 38 #include "core/events/KeyboardEvent.h"
40 #include "core/events/ScopedEventQueue.h" 39 #include "core/events/ScopedEventQueue.h"
41 #include "core/html/HTMLInputElement.h" 40 #include "core/html/HTMLInputElement.h"
42 #include "core/html/parser/HTMLParserIdioms.h" 41 #include "core/html/parser/HTMLParserIdioms.h"
43 #include "core/inspector/ConsoleMessage.h" 42 #include "core/inspector/ConsoleMessage.h"
44 #include "core/layout/LayoutTextControl.h" 43 #include "core/layout/LayoutTextControl.h"
45 #include "platform/text/PlatformLocale.h" 44 #include "platform/text/PlatformLocale.h"
46 #include "wtf/MathExtras.h" 45 #include "wtf/MathExtras.h"
47 #include "wtf/PassOwnPtr.h" 46 #include "wtf/PassOwnPtr.h"
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 if (element().layoutObject()) 290 if (element().layoutObject())
292 element().layoutObject()->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintI nvalidation(LayoutInvalidationReason::AttributeChanged); 291 element().layoutObject()->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintI nvalidation(LayoutInvalidationReason::AttributeChanged);
293 } 292 }
294 293
295 bool NumberInputType::supportsSelectionAPI() const 294 bool NumberInputType::supportsSelectionAPI() const
296 { 295 {
297 return false; 296 return false;
298 } 297 }
299 298
300 } // namespace blink 299 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMeterElement.cpp ('k') | third_party/WebKit/Source/core/streams/ReadableStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698