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

Side by Side Diff: sky/framework/embedder.sky

Issue 881093003: Normalize import paths for Sky modules (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
OLDNEW
1 <import src="/sky/framework/shell.sky" as="shell" /> 1 <import src="shell.sky" as="shell" />
2 <script> 2 <script>
3 function connectToEmbedderService(service, client) { 3 function connectToEmbedderService(service, client) {
4 var handle = internals.connectToEmbedderService(service.name); 4 var handle = internals.connectToEmbedderService(service.name);
5 return shell.wrapHandle(handle, service, client); 5 return shell.wrapHandle(handle, service, client);
6 } 6 }
7 7
8 module.exports = { 8 module.exports = {
9 connectToEmbedderService: connectToEmbedderService, 9 connectToEmbedderService: connectToEmbedderService,
10 }; 10 };
11 </script> 11 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698