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

Unified Diff: content/renderer/chrome_object_extensions_utils.cc

Issue 1113783002: Use Local instead of Handle in src/content/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 | « content/renderer/chrome_object_extensions_utils.h ('k') | content/renderer/dom_automation_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/chrome_object_extensions_utils.cc
diff --git a/content/renderer/chrome_object_extensions_utils.cc b/content/renderer/chrome_object_extensions_utils.cc
index fe78ecc26d5b0a3bddfc18179b88b074932e70ed..d023d29e51d7e462622e8a1a9104c0c0458c5c3b 100644
--- a/content/renderer/chrome_object_extensions_utils.cc
+++ b/content/renderer/chrome_object_extensions_utils.cc
@@ -9,16 +9,16 @@
namespace content {
-v8::Handle<v8::Object> GetOrCreateChromeObject(
- v8::Isolate* isolate, v8::Handle<v8::Object> global) {
- v8::Handle<v8::Object> chrome;
- v8::Handle<v8::Value> chrome_value =
+v8::Local<v8::Object> GetOrCreateChromeObject(
+ v8::Isolate* isolate, v8::Local<v8::Object> global) {
+ v8::Local<v8::Object> chrome;
+ v8::Local<v8::Value> chrome_value =
global->Get(gin::StringToV8(isolate, "chrome"));
if (chrome_value.IsEmpty() || !chrome_value->IsObject()) {
chrome = v8::Object::New(isolate);
global->Set(gin::StringToSymbol(isolate, "chrome"), chrome);
} else {
- chrome = v8::Handle<v8::Object>::Cast(chrome_value);
+ chrome = v8::Local<v8::Object>::Cast(chrome_value);
}
return chrome;
}
« no previous file with comments | « content/renderer/chrome_object_extensions_utils.h ('k') | content/renderer/dom_automation_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698