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

Unified Diff: Source/bindings/core/v8/ScriptPromiseTest.cpp

Issue 1111163003: Replace v8::Handle<> with v8::Local<> in bindings/core/v8/* (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 | « Source/bindings/core/v8/ScriptPromiseResolverTest.cpp ('k') | Source/bindings/core/v8/ScriptState.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptPromiseTest.cpp
diff --git a/Source/bindings/core/v8/ScriptPromiseTest.cpp b/Source/bindings/core/v8/ScriptPromiseTest.cpp
index 4a5980f26457848d427c9d448447a9e51d39bab5..f113f76fbf953d3fa025d8bc39d5922975882702 100644
--- a/Source/bindings/core/v8/ScriptPromiseTest.cpp
+++ b/Source/bindings/core/v8/ScriptPromiseTest.cpp
@@ -49,7 +49,7 @@ void callback(const v8::FunctionCallbackInfo<v8::Value>& info) { }
class Function : public ScriptFunction {
public:
- static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, String* value)
+ static v8::Local<v8::Function> createFunction(ScriptState* scriptState, String* value)
{
Function* self = new Function(scriptState, value);
return self->bindToV8Function();
« no previous file with comments | « Source/bindings/core/v8/ScriptPromiseResolverTest.cpp ('k') | Source/bindings/core/v8/ScriptState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698