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

Side by Side Diff: services/location/geocoder_service.js

Issue 1404443004: Move //mojo/services/network/public/interfaces to //mojo/services/network/interfaces. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: add some missing dependencies Created 5 years, 2 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/nacl/BUILD.gn » ('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 mojo:js_content_handler 1 #!mojo mojo:js_content_handler
2 // Copyright 2014 The Chromium Authors. All rights reserved. 2 // Copyright 2014 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 define("main", [ 6 define("main", [
7 "console", 7 "console",
8 "mojo/public/js/core", 8 "mojo/public/js/core",
9 "mojo/public/js/unicode", 9 "mojo/public/js/unicode",
10 "mojo/services/location/interfaces/geocoder.mojom", 10 "mojo/services/location/interfaces/geocoder.mojom",
11 "mojo/services/location/interfaces/location.mojom", 11 "mojo/services/location/interfaces/location.mojom",
12 "mojo/services/public/js/application", 12 "mojo/services/public/js/application",
13 "mojo/services/network/public/interfaces/network_service.mojom", 13 "mojo/services/network/interfaces/network_service.mojom",
14 "mojo/services/network/public/interfaces/url_loader.mojom", 14 "mojo/services/network/interfaces/url_loader.mojom",
15 "third_party/js/url", 15 "third_party/js/url",
16 ], function(console, core, unicode, geocoder, location, application, network, 16 ], function(console, core, unicode, geocoder, location, application, network,
17 loader, url) { 17 loader, url) {
18 18
19 const Application = application.Application; 19 const Application = application.Application;
20 const Bounds = geocoder.Bounds; 20 const Bounds = geocoder.Bounds;
21 const Geocoder = geocoder.Geocoder; 21 const Geocoder = geocoder.Geocoder;
22 const Geometry = geocoder.Geometry; 22 const Geometry = geocoder.Geometry;
23 const Location = location.Location; 23 const Location = location.Location;
24 const NetworkService = network.NetworkService; 24 const NetworkService = network.NetworkService;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 } 124 }
125 125
126 acceptConnection(initiatorURL, serviceProvider) { 126 acceptConnection(initiatorURL, serviceProvider) {
127 serviceProvider.provideService(Geocoder, GeocoderImpl); 127 serviceProvider.provideService(Geocoder, GeocoderImpl);
128 } 128 }
129 } 129 }
130 130
131 return GeocoderService; 131 return GeocoderService;
132 }); 132 });
133 133
OLDNEW
« no previous file with comments | « services/js/test/network_test.js ('k') | services/nacl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698