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

Unified Diff: Source/bindings/core/v8/V8DOMActivityLogger.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/ScriptString.cpp ('k') | Source/bindings/core/v8/V8DOMWrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8DOMActivityLogger.cpp
diff --git a/Source/bindings/core/v8/V8DOMActivityLogger.cpp b/Source/bindings/core/v8/V8DOMActivityLogger.cpp
index 3bc4b827c209ec0f2c5327c6f8d42c25c7e110bd..d33122d27ae35968094dbad1c80a9f48fe95f440 100644
--- a/Source/bindings/core/v8/V8DOMActivityLogger.cpp
+++ b/Source/bindings/core/v8/V8DOMActivityLogger.cpp
@@ -76,7 +76,7 @@ V8DOMActivityLogger* V8DOMActivityLogger::currentActivityLogger()
return 0;
v8::HandleScope handleScope(isolate);
- v8::Handle<v8::Context> context = isolate->GetCurrentContext();
+ v8::Local<v8::Context> context = isolate->GetCurrentContext();
if (context.IsEmpty() || !toDOMWindow(context))
return 0;
@@ -94,7 +94,7 @@ V8DOMActivityLogger* V8DOMActivityLogger::currentActivityLoggerIfIsolatedWorld()
return 0;
v8::HandleScope handleScope(isolate);
- v8::Handle<v8::Context> context = isolate->GetCurrentContext();
+ v8::Local<v8::Context> context = isolate->GetCurrentContext();
if (context.IsEmpty() || !toDOMWindow(context))
return 0;
« no previous file with comments | « Source/bindings/core/v8/ScriptString.cpp ('k') | Source/bindings/core/v8/V8DOMWrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698