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

Unified Diff: Source/core/workers/WorkerGlobalScope.cpp

Issue 1108833003: Replacing v8::Handle<T> with v8::Local<T> (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/core/workers/WorkerGlobalScope.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/WorkerGlobalScope.cpp
diff --git a/Source/core/workers/WorkerGlobalScope.cpp b/Source/core/workers/WorkerGlobalScope.cpp
index 93b49873f0a2baa982b6628d28d7888a83259213..5ad41f586badc5f89b22759fb5c3ed810f1ec2fb 100644
--- a/Source/core/workers/WorkerGlobalScope.cpp
+++ b/Source/core/workers/WorkerGlobalScope.cpp
@@ -384,18 +384,18 @@ void WorkerGlobalScope::removeURLFromMemoryCacheInternal(const KURL& url)
memoryCache()->removeURLFromCache(url);
}
-v8::Handle<v8::Object> WorkerGlobalScope::wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*)
+v8::Local<v8::Object> WorkerGlobalScope::wrap(v8::Local<v8::Object> creationContext, v8::Isolate*)
{
// WorkerGlobalScope must never be wrapped with wrap method. The global
// object of ECMAScript environment is used as the wrapper.
RELEASE_ASSERT_NOT_REACHED();
- return v8::Handle<v8::Object>();
+ return v8::Local<v8::Object>();
}
-v8::Handle<v8::Object> WorkerGlobalScope::associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Handle<v8::Object> wrapper)
+v8::Local<v8::Object> WorkerGlobalScope::associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper)
{
RELEASE_ASSERT_NOT_REACHED(); // same as wrap method
- return v8::Handle<v8::Object>();
+ return v8::Local<v8::Object>();
}
DEFINE_TRACE(WorkerGlobalScope)
« no previous file with comments | « Source/core/workers/WorkerGlobalScope.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698