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

Side by Side Diff: services/js/test/pingpong.js

Issue 821403003: Changes magic sequence to '!#mojo ' and strips 'mojo ' when building url (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: two more Created 5 years, 11 months 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 unified diff | Download patch
« no previous file with comments | « services/js/test/network_test.js ('k') | services/js/test/pingpong_target.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!mojo:js_content_handler 1 #!mojo mojo:js_content_handler
2 2
3 define("main", [ 3 define("main", [
4 "mojo/public/js/bindings", 4 "mojo/public/js/bindings",
5 "mojo/services/public/js/application", 5 "mojo/services/public/js/application",
6 "services/js/test/pingpong_service.mojom" 6 "services/js/test/pingpong_service.mojom"
7 ], function(bindings, application, pingPongServiceMojom) { 7 ], function(bindings, application, pingPongServiceMojom) {
8 8
9 const ProxyBindings = bindings.ProxyBindings; 9 const ProxyBindings = bindings.ProxyBindings;
10 const StubBindings = bindings.StubBindings; 10 const StubBindings = bindings.StubBindings;
11 const Application = application.Application; 11 const Application = application.Application;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 class PingPong extends Application { 69 class PingPong extends Application {
70 acceptConnection(url, serviceProvider) { 70 acceptConnection(url, serviceProvider) {
71 serviceProvider.provideService( 71 serviceProvider.provideService(
72 PingPongService, PingPongServiceImpl.bind(null, this)); 72 PingPongService, PingPongServiceImpl.bind(null, this));
73 } 73 }
74 } 74 }
75 75
76 return PingPong; 76 return PingPong;
77 }); 77 });
OLDNEW
« no previous file with comments | « services/js/test/network_test.js ('k') | services/js/test/pingpong_target.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698