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

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

Issue 1114893002: Replace v8::Handle with its alias v8::Local in Source/modules/* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/webaudio/AudioBuffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/cachestorage/Cache.cpp
diff --git a/Source/modules/cachestorage/Cache.cpp b/Source/modules/cachestorage/Cache.cpp
index 7f04eab49adc51ec1d015fccd997dbc21e09917d..7990e6c67586793381ee6f52a580374b73c5317b 100644
--- a/Source/modules/cachestorage/Cache.cpp
+++ b/Source/modules/cachestorage/Cache.cpp
@@ -150,7 +150,7 @@ ScriptPromise rejectAsNotImplemented(ScriptState* scriptState)
class Cache::FetchResolvedForAdd final : public ScriptFunction {
public:
- static v8::Handle<v8::Function> create(ScriptState* scriptState, Cache* cache, Request* request)
+ static v8::Local<v8::Function> create(ScriptState* scriptState, Cache* cache, Request* request)
{
FetchResolvedForAdd* self = new FetchResolvedForAdd(scriptState, cache, request);
return self->bindToV8Function();
« no previous file with comments | « no previous file | Source/modules/webaudio/AudioBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698