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

Unified Diff: services/js/mojo_bridge_module.cc

Issue 757703002: Creates a JavaScript Applicaiton (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Do not try to call undefined Application methods. 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
« services/js/js_app_shell.h ('K') | « services/js/js_app_shell.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/js/mojo_bridge_module.cc
diff --git a/services/js/mojo_bridge_module.cc b/services/js/mojo_bridge_module.cc
index 7b049f0c2b2b2719db73256bfeb978226bc7e473..de9b2457ce33f9f7eff3f094e7127555ab52b8d5 100644
--- a/services/js/mojo_bridge_module.cc
+++ b/services/js/mojo_bridge_module.cc
@@ -30,12 +30,6 @@ v8::Local<v8::Value> MojoInternals::GetModule(JSApp* js_app,
if (templ.IsEmpty()) {
templ = gin::ObjectTemplateBuilder(isolate)
- .SetMethod("requestorMessagePipeHandle",
- base::Bind(&JSApp::RequestorMessagePipeHandle,
- base::Unretained(js_app)))
- .SetMethod("connectToApplication",
- base::Bind(&JSApp::ConnectToApplication,
- base::Unretained(js_app)))
.SetMethod("quit",
base::Bind(&JSApp::Quit, base::Unretained(js_app)))
.Build();
« services/js/js_app_shell.h ('K') | « services/js/js_app_shell.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698