Index: Source/bindings/v8/custom/V8WindowCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8WindowCustom.cpp b/Source/bindings/v8/custom/V8WindowCustom.cpp |
index 0b67b777cff0adde1db81e8ca78d91544d9ad1e7..c21dbd5222e98d23f2455890c7cc622343e1d5e4 100644 |
--- a/Source/bindings/v8/custom/V8WindowCustom.cpp |
+++ b/Source/bindings/v8/custom/V8WindowCustom.cpp |
@@ -95,7 +95,7 @@ void WindowSetTimeoutImpl(const v8::FunctionCallbackInfo<v8::Value>& info, bool |
if (function->IsString()) { |
functionString = toWebCoreString(function.As<v8::String>()); |
} else { |
- v8::Handle<v8::Value> v8String = function->ToString(); |
+ v8::Handle<v8::String> v8String = function->ToString(); |
// Bail out if string conversion failed. |
if (v8String.IsEmpty()) |