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

Side by Side Diff: public/web/WebInputElement.h

Issue 215903003: Autofill/rAc: dispatch "input" events when changing text contents of <textarea>, (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: protecting protectors everywhere Created 6 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
« no previous file with comments | « public/web/WebFormControlElement.h ('k') | no next file » | 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 // This returns true only for type=text. 66 // This returns true only for type=text.
67 BLINK_EXPORT bool isText() const; 67 BLINK_EXPORT bool isText() const;
68 BLINK_EXPORT bool isPasswordField() const; 68 BLINK_EXPORT bool isPasswordField() const;
69 BLINK_EXPORT bool isImageButton() const; 69 BLINK_EXPORT bool isImageButton() const;
70 BLINK_EXPORT bool isRadioButton() const; 70 BLINK_EXPORT bool isRadioButton() const;
71 BLINK_EXPORT bool isCheckbox() const; 71 BLINK_EXPORT bool isCheckbox() const;
72 BLINK_EXPORT int maxLength() const; 72 BLINK_EXPORT int maxLength() const;
73 BLINK_EXPORT bool isActivatedSubmit() const; 73 BLINK_EXPORT bool isActivatedSubmit() const;
74 BLINK_EXPORT void setActivatedSubmit(bool); 74 BLINK_EXPORT void setActivatedSubmit(bool);
75 BLINK_EXPORT int size() const; 75 BLINK_EXPORT int size() const;
76 BLINK_EXPORT void setChecked(bool, bool sendChangeEvent = false); 76 BLINK_EXPORT void setChecked(bool, bool sendEvents = false);
77 // Sets the value inside the text field without being sanitized. 77 // Sets the value inside the text field without being sanitized.
78 // Can't be used if a renderer doesn't exist or on a non text field type . 78 // Can't be used if a renderer doesn't exist or on a non text field type .
79 // Caret will be moved to the end. 79 // Caret will be moved to the end.
80 BLINK_EXPORT void setEditingValue(const WebString&); 80 BLINK_EXPORT void setEditingValue(const WebString&);
81 BLINK_EXPORT bool isValidValue(const WebString&) const; 81 BLINK_EXPORT bool isValidValue(const WebString&) const;
82 BLINK_EXPORT bool isChecked() const; 82 BLINK_EXPORT bool isChecked() const;
83 BLINK_EXPORT bool isMultiple() const; 83 BLINK_EXPORT bool isMultiple() const;
84 84
85 BLINK_EXPORT WebElementCollection dataListOptions() const; 85 BLINK_EXPORT WebElementCollection dataListOptions() const;
86 86
(...skipping 24 matching lines...) Expand all
111 BLINK_EXPORT WebInputElement* toWebInputElement(WebElement*); 111 BLINK_EXPORT WebInputElement* toWebInputElement(WebElement*);
112 112
113 inline const WebInputElement* toWebInputElement(const WebElement* element) 113 inline const WebInputElement* toWebInputElement(const WebElement* element)
114 { 114 {
115 return toWebInputElement(const_cast<WebElement*>(element)); 115 return toWebInputElement(const_cast<WebElement*>(element));
116 } 116 }
117 117
118 } // namespace blink 118 } // namespace blink
119 119
120 #endif 120 #endif
OLDNEW
« no previous file with comments | « public/web/WebFormControlElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698