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

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

Issue 1071963002: Replace Handle<> with 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/V8IteratorResultValue.h ('k') | Source/bindings/core/v8/V8NPObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8IteratorResultValue.cpp
diff --git a/Source/bindings/core/v8/V8IteratorResultValue.cpp b/Source/bindings/core/v8/V8IteratorResultValue.cpp
index 7dce7008cdc7f5c92002a8da53f9b395d7662309..344cc74a5257a3496f79e1e785ab130d413459fc 100644
--- a/Source/bindings/core/v8/V8IteratorResultValue.cpp
+++ b/Source/bindings/core/v8/V8IteratorResultValue.cpp
@@ -7,7 +7,7 @@
namespace blink {
-v8::Handle<v8::Object> v8IteratorResultValue(v8::Isolate* isolate, bool done, v8::Handle<v8::Value> value)
+v8::Local<v8::Object> v8IteratorResultValue(v8::Isolate* isolate, bool done, v8::Local<v8::Value> value)
{
v8::Local<v8::Object> result = v8::Object::New(isolate);
result->Set(v8String(isolate, "done"), v8Boolean(done, isolate));
« no previous file with comments | « Source/bindings/core/v8/V8IteratorResultValue.h ('k') | Source/bindings/core/v8/V8NPObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698