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

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

Issue 23886003: Have HTMLElements / SVGElements constructors take a Document reference in argument (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Another Android build fix Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/HTMLImageElement.cpp ('k') | Source/core/html/HTMLInputElement.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) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved.
6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 29 matching lines...) Expand all
40 class HTMLOptionElement; 40 class HTMLOptionElement;
41 class Icon; 41 class Icon;
42 class InputType; 42 class InputType;
43 class InputTypeView; 43 class InputTypeView;
44 class KURL; 44 class KURL;
45 class ListAttributeTargetObserver; 45 class ListAttributeTargetObserver;
46 struct DateTimeChooserParameters; 46 struct DateTimeChooserParameters;
47 47
48 class HTMLInputElement : public HTMLTextFormControlElement { 48 class HTMLInputElement : public HTMLTextFormControlElement {
49 public: 49 public:
50 static PassRefPtr<HTMLInputElement> create(const QualifiedName&, Document*, HTMLFormElement*, bool createdByParser); 50 static PassRefPtr<HTMLInputElement> create(const QualifiedName&, Document&, HTMLFormElement*, bool createdByParser);
51 virtual ~HTMLInputElement(); 51 virtual ~HTMLInputElement();
52 52
53 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitspeechchange); 53 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitspeechchange);
54 54
55 virtual bool shouldAutocomplete() const; 55 virtual bool shouldAutocomplete() const;
56 56
57 // For ValidityState 57 // For ValidityState
58 virtual bool hasBadInput() const OVERRIDE; 58 virtual bool hasBadInput() const OVERRIDE;
59 virtual bool patternMismatch() const OVERRIDE; 59 virtual bool patternMismatch() const OVERRIDE;
60 virtual bool rangeUnderflow() const OVERRIDE; 60 virtual bool rangeUnderflow() const OVERRIDE;
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 virtual void setRangeText(const String& replacement, unsigned start, unsigne d end, const String& selectionMode, ExceptionState&) OVERRIDE; 280 virtual void setRangeText(const String& replacement, unsigned start, unsigne d end, const String& selectionMode, ExceptionState&) OVERRIDE;
281 281
282 bool hasImageLoader() const { return m_imageLoader; } 282 bool hasImageLoader() const { return m_imageLoader; }
283 HTMLImageLoader* imageLoader(); 283 HTMLImageLoader* imageLoader();
284 284
285 bool setupDateTimeChooserParameters(DateTimeChooserParameters&); 285 bool setupDateTimeChooserParameters(DateTimeChooserParameters&);
286 286
287 bool supportsInputModeAttribute() const; 287 bool supportsInputModeAttribute() const;
288 288
289 protected: 289 protected:
290 HTMLInputElement(const QualifiedName&, Document*, HTMLFormElement*, bool cre atedByParser); 290 HTMLInputElement(const QualifiedName&, Document&, HTMLFormElement*, bool cre atedByParser);
291 291
292 virtual void defaultEventHandler(Event*); 292 virtual void defaultEventHandler(Event*);
293 293
294 private: 294 private:
295 enum AutoCompleteSetting { Uninitialized, On, Off }; 295 enum AutoCompleteSetting { Uninitialized, On, Off };
296 296
297 virtual void didAddUserAgentShadowRoot(ShadowRoot*) OVERRIDE; 297 virtual void didAddUserAgentShadowRoot(ShadowRoot*) OVERRIDE;
298 298
299 virtual void willChangeForm() OVERRIDE; 299 virtual void willChangeForm() OVERRIDE;
300 virtual void didChangeForm() OVERRIDE; 300 virtual void didChangeForm() OVERRIDE;
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::inputT ag)); 422 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::inputT ag));
423 return static_cast<const HTMLInputElement*>(node); 423 return static_cast<const HTMLInputElement*>(node);
424 } 424 }
425 425
426 // This will catch anyone doing an unnecessary cast. 426 // This will catch anyone doing an unnecessary cast.
427 void toHTMLElement(const HTMLElement*); 427 void toHTMLElement(const HTMLElement*);
428 428
429 429
430 } //namespace 430 } //namespace
431 #endif 431 #endif
OLDNEW
« no previous file with comments | « Source/core/html/HTMLImageElement.cpp ('k') | Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698