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

Unified Diff: content/renderer/web_ui_runner.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/web_ui_runner.h ('k') | content/shell/renderer/binding_helpers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/web_ui_runner.cc
diff --git a/content/renderer/web_ui_runner.cc b/content/renderer/web_ui_runner.cc
index 5d6f05cc66ab0632871b5e531b232c75da51e053..f1d0cce17c19beda4141e41dab4c3b1614b0e02e 100644
--- a/content/renderer/web_ui_runner.cc
+++ b/content/renderer/web_ui_runner.cc
@@ -41,10 +41,10 @@ void WebUIRunner::Run(const std::string& source,
blink::WebScriptSource(blink::WebString::fromUTF8(source)));
}
-v8::Handle<v8::Value> WebUIRunner::Call(v8::Handle<v8::Function> function,
- v8::Handle<v8::Value> receiver,
+v8::Local<v8::Value> WebUIRunner::Call(v8::Local<v8::Function> function,
+ v8::Local<v8::Value> receiver,
int argc,
- v8::Handle<v8::Value> argv[]) {
+ v8::Local<v8::Value> argv[]) {
return frame_->callFunctionEvenIfScriptDisabled(function, receiver, argc,
argv);
}
« no previous file with comments | « content/renderer/web_ui_runner.h ('k') | content/shell/renderer/binding_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698