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

Unified Diff: content/renderer/web_ui_runner.h

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_mojo_context_state.cc ('k') | content/renderer/web_ui_runner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/web_ui_runner.h
diff --git a/content/renderer/web_ui_runner.h b/content/renderer/web_ui_runner.h
index 2f17ab59deb79c994df2f34bbbdc7463b3adfc69..3778a423f23c844a3e4f4ceb6d5f082813ac9050 100644
--- a/content/renderer/web_ui_runner.h
+++ b/content/renderer/web_ui_runner.h
@@ -23,10 +23,10 @@ class WebUIRunner : public gin::Runner {
// Runner overrides:
void Run(const std::string& source,
const std::string& resource_name) override;
- v8::Handle<v8::Value> Call(v8::Handle<v8::Function> function,
- v8::Handle<v8::Value> receiver,
+ v8::Local<v8::Value> Call(v8::Local<v8::Function> function,
+ v8::Local<v8::Value> receiver,
int argc,
- v8::Handle<v8::Value> argv[]) override;
+ v8::Local<v8::Value> argv[]) override;
gin::ContextHolder* GetContextHolder() override;
private:
« no previous file with comments | « content/renderer/web_ui_mojo_context_state.cc ('k') | content/renderer/web_ui_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698