Index: Source/bindings/v8/custom/V8DeviceOrientationEventCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8DeviceOrientationEventCustom.cpp b/Source/bindings/v8/custom/V8DeviceOrientationEventCustom.cpp |
index 64c701c4db9dab4ef6c69e3c77f6800edb0a9676..0418b31c6fc612cda503e1330f510df93f1efe19 100644 |
--- a/Source/bindings/v8/custom/V8DeviceOrientationEventCustom.cpp |
+++ b/Source/bindings/v8/custom/V8DeviceOrientationEventCustom.cpp |
@@ -34,7 +34,7 @@ namespace WebCore { |
void V8DeviceOrientationEvent::initDeviceOrientationEventMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
- DeviceOrientationEvent* imp = V8DeviceOrientationEvent::toNative(info.Holder()); |
+ DeviceOrientationEvent* impl = V8DeviceOrientationEvent::toNative(info.Holder()); |
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, type, info[0]); |
bool bubbles = info[1]->BooleanValue(); |
bool cancelable = info[2]->BooleanValue(); |
@@ -49,7 +49,7 @@ void V8DeviceOrientationEvent::initDeviceOrientationEventMethodCustom(const v8:: |
bool absoluteProvided = !isUndefinedOrNull(info[6]); |
bool absolute = info[6]->BooleanValue(); |
RefPtrWillBeRawPtr<DeviceOrientationData> orientation = DeviceOrientationData::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma, absoluteProvided, absolute); |
- imp->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get()); |
+ impl->initDeviceOrientationEvent(type, bubbles, cancelable, orientation.get()); |
} |
} // namespace WebCore |