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

Unified Diff: gin/runner.h

Issue 1112923003: Replace Handle<> with Local in remaining gin/* (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 | « gin/public/wrapper_info.h ('k') | gin/shell_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/runner.h
diff --git a/gin/runner.h b/gin/runner.h
index 36a75d2f9563183510c7c08c0485c2b17f2464ec..31995698ffddca20060a43686c321422f6b6fe8b 100644
--- a/gin/runner.h
+++ b/gin/runner.h
@@ -24,13 +24,13 @@ class GIN_EXPORT Runner {
// context by creating an instance of Runner::Scope on the stack.
virtual void Run(const std::string& source,
const std::string& resource_name) = 0;
- virtual v8::Handle<v8::Value> Call(v8::Handle<v8::Function> function,
- v8::Handle<v8::Value> receiver,
+ virtual v8::Local<v8::Value> Call(v8::Local<v8::Function> function,
+ v8::Local<v8::Value> receiver,
int argc,
- v8::Handle<v8::Value> argv[]) = 0;
+ v8::Local<v8::Value> argv[]) = 0;
virtual ContextHolder* GetContextHolder() = 0;
- v8::Handle<v8::Object> global() {
+ v8::Local<v8::Object> global() {
return GetContextHolder()->context()->Global();
}
« no previous file with comments | « gin/public/wrapper_info.h ('k') | gin/shell_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698