Index: Source/modules/cachestorage/CacheTest.cpp |
diff --git a/Source/modules/cachestorage/CacheTest.cpp b/Source/modules/cachestorage/CacheTest.cpp |
index 37c86017f4e29a132d81ae36d83a95250f27aa9e..8b7fb71e64f4ad62c94bdaf417f4c1472cfbb591 100644 |
--- a/Source/modules/cachestorage/CacheTest.cpp |
+++ b/Source/modules/cachestorage/CacheTest.cpp |
@@ -208,7 +208,7 @@ private: |
// A ScriptFunction that creates a test failure if it is ever called. |
class UnreachableFunction : public ScriptFunction { |
public: |
- static v8::Handle<v8::Function> create(ScriptState* scriptState) |
+ static v8::Local<v8::Function> create(ScriptState* scriptState) |
{ |
UnreachableFunction* self = new UnreachableFunction(scriptState); |
return self->bindToV8Function(); |
@@ -227,7 +227,7 @@ private: |
// values being passed. |
class TestFunction : public ScriptFunction { |
public: |
- static v8::Handle<v8::Function> create(ScriptState* scriptState, ScriptValue* outValue) |
+ static v8::Local<v8::Function> create(ScriptState* scriptState, ScriptValue* outValue) |
{ |
TestFunction* self = new TestFunction(scriptState, outValue); |
return self->bindToV8Function(); |