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

Unified Diff: third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp

Issue 2424983004: Introduce enum InputType::ValueMode. (Closed)
Patch Set: Created 4 years, 2 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/forms/HiddenInputType.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp b/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp
index 7afda975110c7a9081730652ae5df4b6d450ea91..d90f2b3dc9f9245845eccfd25e679e83f1f59595 100644
--- a/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp
+++ b/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp
@@ -87,8 +87,8 @@ bool HiddenInputType::layoutObjectIsNeeded() {
return false;
}
-bool HiddenInputType::storesValueSeparateFromAttribute() {
- return false;
+InputType::ValueMode HiddenInputType::valueMode() const {
+ return ValueMode::kDefault;
}
void HiddenInputType::setValue(const String& sanitizedValue,
« no previous file with comments | « third_party/WebKit/Source/core/html/forms/HiddenInputType.h ('k') | third_party/WebKit/Source/core/html/forms/InputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698