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

Unified Diff: third_party/WebKit/Source/core/events/InputEventInit.idl

Issue 2570203004: Fix low risk nullable => non nullable change for NavigatorLanguage.language (Closed)
Patch Set: Created 4 years 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/events/InputEventInit.idl
diff --git a/third_party/WebKit/Source/core/events/InputEventInit.idl b/third_party/WebKit/Source/core/events/InputEventInit.idl
index 7a6dfea8f50f1d9cfdc0030f518e0765ce753076..ec4dc983d8ed281b2567b60bac8137223efc0ad9 100644
--- a/third_party/WebKit/Source/core/events/InputEventInit.idl
+++ b/third_party/WebKit/Source/core/events/InputEventInit.idl
@@ -8,7 +8,7 @@
// https://w3c.github.io/input-events/#interface-InputEventInit
dictionary InputEventInit : UIEventInit {
DOMString inputType = "";
- DOMString? data;
+ DOMString data;
DataTransfer? dataTransfer;
boolean isComposing = false;
sequence<Range> ranges = [];

Powered by Google App Engine
This is Rietveld 408576698