| Index: third_party/WebKit/Source/core/events/InputEvent.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/InputEvent.cpp b/third_party/WebKit/Source/core/events/InputEvent.cpp
|
| index 842b79406d5791ed565550c299950e59dc6437d3..6810bd88619566110fe1fca886f59019f15f7584 100644
|
| --- a/third_party/WebKit/Source/core/events/InputEvent.cpp
|
| +++ b/third_party/WebKit/Source/core/events/InputEvent.cpp
|
| @@ -144,8 +144,7 @@ InputEvent* InputEvent::createBeforeInput(InputType inputType,
|
| /* static */
|
| InputEvent* InputEvent::createInput(InputType inputType,
|
| const String& data,
|
| - EventIsComposing isComposing,
|
| - const RangeVector* ranges) {
|
| + EventIsComposing isComposing) {
|
| InputEventInit inputEventInit;
|
|
|
| inputEventInit.setBubbles(true);
|
| @@ -156,8 +155,6 @@ InputEvent* InputEvent::createInput(InputType inputType,
|
| inputEventInit.setInputType(convertInputTypeToString(inputType));
|
| inputEventInit.setData(data);
|
| inputEventInit.setIsComposing(isComposing == IsComposing);
|
| - if (ranges)
|
| - inputEventInit.setRanges(*ranges);
|
| inputEventInit.setComposed(true);
|
| return InputEvent::create(EventTypeNames::input, inputEventInit);
|
| }
|
|
|