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

Unified Diff: gin/runner.cc

Issue 59153005: Begin implementing V8 bindings for Mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix skipped comment Created 7 years, 1 month 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
Index: gin/runner.cc
diff --git a/gin/runner.cc b/gin/runner.cc
index cf9839951f5381a6f6fcb0d186fbf437c7e2cee2..ec701b7e5a320ced9cf577a8d2bfaf867ebb7629 100644
--- a/gin/runner.cc
+++ b/gin/runner.cc
@@ -44,7 +44,7 @@ void Runner::Run(Handle<Script> script) {
}
v8::Handle<v8::Function> Runner::GetMain() {
- Handle<Value> property = global()->Get(StringToV8(isolate_, "main"));
+ Handle<Value> property = global()->Get(StringToSymbol(isolate_, "main"));
if (property.IsEmpty())
return v8::Handle<v8::Function>();
Handle<Function> main;
« gin/arguments.cc ('K') | « gin/per_isolate_data.cc ('k') | gin/test/gtest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698