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

Unified Diff: Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp

Issue 1074683002: [bindings] Use Local<> instead of Handle<> (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/custom/V8WindowCustom.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp
diff --git a/Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp b/Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp
index 0ba182a027b15d1d6793c532f25cd84f4ee90fe5..63aafeefb3ebdeebdc92adca8801dc1f35a86166 100644
--- a/Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp
+++ b/Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp
@@ -56,7 +56,7 @@ v8::Handle<v8::Value> toV8(WorkerGlobalScope* impl, v8::Handle<v8::Object> creat
if (!script)
return v8::Null(isolate);
- v8::Handle<v8::Object> global = script->context()->Global();
+ v8::Local<v8::Object> global = script->context()->Global();
ASSERT(!global.IsEmpty());
return global;
}
« no previous file with comments | « Source/bindings/core/v8/custom/V8WindowCustom.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698