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

Unified Diff: third_party/WebKit/Source/core/events/InputEvent.h

Issue 2709883004: [InputEvent] Change |InputEventInit::sequence<Range> ranges| to |sequence<StaticRange> targetRanges| (Closed)
Patch Set: yosin's review: Use early return 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/InputEvent.h
diff --git a/third_party/WebKit/Source/core/events/InputEvent.h b/third_party/WebKit/Source/core/events/InputEvent.h
index 5810fe66224f342cdd60ec32657d945f76b72a3c..e7f79a24952e59932a20ffb0ccbe9611a6880ab3 100644
--- a/third_party/WebKit/Source/core/events/InputEvent.h
+++ b/third_party/WebKit/Source/core/events/InputEvent.h
@@ -82,16 +82,16 @@ class InputEvent final : public UIEvent {
const String& data,
EventCancelable,
EventIsComposing,
- const RangeVector*);
+ const StaticRangeVector*);
static InputEvent* createBeforeInput(InputType,
DataTransfer*,
EventCancelable,
EventIsComposing,
- const RangeVector*);
+ const StaticRangeVector*);
static InputEvent* createInput(InputType,
const String& data,
EventIsComposing,
- const RangeVector*);
+ const StaticRangeVector*);
String inputType() const;
const String& data() const { return m_data; }

Powered by Google App Engine
This is Rietveld 408576698