Chromium Code Reviews| Index: services/js/js_app_shell.cc |
| diff --git a/services/js/js_app_shell.cc b/services/js/js_app_shell.cc |
| index 448ba3d62c0b0014b41e925a4a3ac9b0d694ae08..27011ab5a9552e5a2d97a82c8b7ab5b2698b4d28 100644 |
| --- a/services/js/js_app_shell.cc |
| +++ b/services/js/js_app_shell.cc |
| @@ -14,7 +14,7 @@ gin::WrapperInfo JSAppShell::kWrapperInfo = {gin::kEmbedderNativeGin}; |
| gin::Handle<JSAppShell> JSAppShell::Create(v8::Isolate* isolate, |
| JSApp* js_app) { |
| - return CreateHandle(isolate, new JSAppShell(js_app)); |
| + return gin::CreateHandle(isolate, new JSAppShell(js_app)); |
|
jamesr
2014/11/25 18:27:55
do you have any idea how this compiled before? 'i
jamesr
2014/11/25 18:29:19
Actually, JSAppShell inherits from gin::Wrappable<
|
| } |
| JSAppShell::JSAppShell(JSApp* js_app) : js_app_(js_app) { |