Chromium Code Reviews| 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; |