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

Side by Side Diff: services/js/test/network_test.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/echo.js ('k') | services/js/test/pingpong.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/services/public/js/application", 4 "mojo/services/public/js/application",
5 "mojo/public/js/core", 5 "mojo/public/js/core",
6 "mojo/services/network/public/interfaces/network_service.mojom", 6 "mojo/services/network/public/interfaces/network_service.mojom",
7 "mojo/services/network/public/interfaces/url_loader.mojom", 7 "mojo/services/network/public/interfaces/url_loader.mojom",
8 "services/js/test/network_test_service.mojom", 8 "services/js/test/network_test_service.mojom",
9 ], function(application, 9 ], function(application,
10 core, 10 core,
11 networkServiceMojom, 11 networkServiceMojom,
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 class NetworkTest extends Application { 54 class NetworkTest extends Application {
55 acceptConnection(url, serviceProvider) { 55 acceptConnection(url, serviceProvider) {
56 serviceProvider.provideService( 56 serviceProvider.provideService(
57 NetworkTestService, 57 NetworkTestService,
58 NetworkTestServiceImpl.bind(null, this)); 58 NetworkTestServiceImpl.bind(null, this));
59 } 59 }
60 } 60 }
61 61
62 return NetworkTest; 62 return NetworkTest;
63 }); 63 });
OLDNEW
« no previous file with comments | « services/js/test/echo.js ('k') | services/js/test/pingpong.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698