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

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

Issue 2709883004: [InputEvent] Change |InputEventInit::sequence<Range> ranges| to |sequence<StaticRange> targetRanges| (Closed)
Patch Set: Add tests and use StaticRange Created 3 years, 10 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/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..bdc363150c200baa8ac9456d98061ec8fb3681c2 100644
--- a/third_party/WebKit/Source/core/events/InputEventInit.idl
+++ b/third_party/WebKit/Source/core/events/InputEventInit.idl
@@ -11,5 +11,5 @@ dictionary InputEventInit : UIEventInit {
DOMString? data;
DataTransfer? dataTransfer;
boolean isComposing = false;
- sequence<Range> ranges = [];
+ sequence<StaticRange> targetRanges = [];
};

Powered by Google App Engine
This is Rietveld 408576698