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

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

Issue 1398973004: Move //mojo/services/X/public/... to //mojo/services/X/... (part 2). (Closed) Base URL: https://github.com/domokit/mojo.git@no_public_1
Patch Set: add missing copyright notices 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/location/BUILD.gn ('k') | services/native_support/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.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
2 5
3 define("main", [ 6 define("main", [
4 "console", 7 "console",
5 "mojo/public/js/core", 8 "mojo/public/js/core",
6 "mojo/public/js/unicode", 9 "mojo/public/js/unicode",
7 "mojo/services/location/public/interfaces/geocoder.mojom", 10 "mojo/services/location/interfaces/geocoder.mojom",
8 "mojo/services/location/public/interfaces/location.mojom", 11 "mojo/services/location/interfaces/location.mojom",
9 "mojo/services/public/js/application", 12 "mojo/services/public/js/application",
10 "mojo/services/network/public/interfaces/network_service.mojom", 13 "mojo/services/network/public/interfaces/network_service.mojom",
11 "mojo/services/network/public/interfaces/url_loader.mojom", 14 "mojo/services/network/public/interfaces/url_loader.mojom",
12 "third_party/js/url", 15 "third_party/js/url",
13 ], function(console, core, unicode, geocoder, location, application, network, 16 ], function(console, core, unicode, geocoder, location, application, network,
14 loader, url) { 17 loader, url) {
15 18
16 const Application = application.Application; 19 const Application = application.Application;
17 const Bounds = geocoder.Bounds; 20 const Bounds = geocoder.Bounds;
18 const Geocoder = geocoder.Geocoder; 21 const Geocoder = geocoder.Geocoder;
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 } 124 }
122 125
123 acceptConnection(initiatorURL, serviceProvider) { 126 acceptConnection(initiatorURL, serviceProvider) {
124 serviceProvider.provideService(Geocoder, GeocoderImpl); 127 serviceProvider.provideService(Geocoder, GeocoderImpl);
125 } 128 }
126 } 129 }
127 130
128 return GeocoderService; 131 return GeocoderService;
129 }); 132 });
130 133
OLDNEW
« no previous file with comments | « services/location/BUILD.gn ('k') | services/native_support/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698