Index: Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
diff --git a/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp b/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
index 74a9a26704c92865ef2fbeeedb3d5c7f9f1d970a..3acd199a27f7ecf5ca1cb3756b199e515d5bb855 100644 |
--- a/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
+++ b/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
@@ -42,7 +42,7 @@ public: |
// The returned ScriptFunction can outlive the StubScriptFunction, |
// but it should not be called after the StubScriptFunction dies. |
- v8::Handle<v8::Function> function(ScriptState* scriptState) |
+ v8::Local<v8::Function> function(ScriptState* scriptState) |
{ |
return ScriptFunctionImpl::createFunction(scriptState, *this); |
} |
@@ -56,7 +56,7 @@ private: |
class ScriptFunctionImpl : public ScriptFunction { |
public: |
- static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, StubScriptFunction& owner) |
+ static v8::Local<v8::Function> createFunction(ScriptState* scriptState, StubScriptFunction& owner) |
{ |
ScriptFunctionImpl* self = new ScriptFunctionImpl(scriptState, owner); |
return self->bindToV8Function(); |