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

Unified Diff: third_party/WebKit/Source/core/html/HTMLInputElement.h

Issue 2879063003: INPUT element: Stop saving/restoring values of input[type=hidden]. (Closed)
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLInputElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.h b/third_party/WebKit/Source/core/html/HTMLInputElement.h
index 5503e26ef7773d48dda9861d2d8f56326b1194f9..0d29aa42872078c688a19cb62b4780d85f984dcc 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.h
@@ -232,9 +232,6 @@ class CORE_EXPORT HTMLInputElement : public TextControlElement {
// Functions for InputType classes.
void SetNonAttributeValue(const String&);
void SetNonAttributeValueByUserEdit(const String&);
- bool ValueAttributeWasUpdatedAfterParsing() const {
- return value_attribute_was_updated_after_parsing_;
- }
void UpdateView();
bool NeedsToUpdateViewValue() const { return needs_to_update_view_value_; }
void SetInnerEditorValue(const String&) override;
@@ -418,7 +415,6 @@ class CORE_EXPORT HTMLInputElement : public TextControlElement {
unsigned has_non_empty_list_ : 1;
unsigned state_restored_ : 1;
unsigned parsing_in_progress_ : 1;
- unsigned value_attribute_was_updated_after_parsing_ : 1;
unsigned can_receive_dropped_files_ : 1;
unsigned should_reveal_password_ : 1;
unsigned needs_to_update_view_value_ : 1;

Powered by Google App Engine
This is Rietveld 408576698