| Index: third_party/WebKit/Source/bindings/modules/v8/custom/V8DeviceMotionEventCustom.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/modules/v8/custom/V8DeviceMotionEventCustom.cpp b/third_party/WebKit/Source/bindings/modules/v8/custom/V8DeviceMotionEventCustom.cpp
|
| index 2e6f48248ab5ab0b5d53574e3b79de53e39d0ddb..00817475a40c0e276346fb8a7e111af67ec1ea9c 100644
|
| --- a/third_party/WebKit/Source/bindings/modules/v8/custom/V8DeviceMotionEventCustom.cpp
|
| +++ b/third_party/WebKit/Source/bindings/modules/v8/custom/V8DeviceMotionEventCustom.cpp
|
| @@ -125,9 +125,9 @@ DeviceMotionData::RotationRate* readRotationRateArgument(
|
| void V8DeviceMotionEvent::initDeviceMotionEventMethodCustom(
|
| const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| // TODO(haraken): This custom binding should mimic auto-generated code more.
|
| - ExceptionState exceptionState(ExceptionState::ExecutionContext,
|
| - "initDeviceMotionEvent", "DeviceMotionEvent",
|
| - info.Holder(), info.GetIsolate());
|
| + ExceptionState exceptionState(info.GetIsolate(),
|
| + ExceptionState::ExecutionContext,
|
| + "DeviceMotionEvent", "initDeviceMotionEvent");
|
| DeviceMotionEvent* impl = V8DeviceMotionEvent::toImpl(info.Holder());
|
| v8::Isolate* isolate = info.GetIsolate();
|
| V8StringResource<> type(info[0]);
|
|
|