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

Unified Diff: services/js/js_app_shell.cc

Issue 758823002: Fix Windows build after https://codereview.chromium.org/757703002/ (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698