Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1428)

Unified Diff: Source/modules/cachestorage/CacheTest.cpp

Issue 1079003002: bindings: v8::Handle -> v8::Local in Source/Modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fixed build errors Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/modules/crypto/CryptoResultImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « no previous file | Source/modules/crypto/CryptoResultImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698