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

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

Issue 690803002: Add a basic XMLHttpRequest implementation (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Propagate error Created 6 years, 1 month 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 | « no previous file | sky/framework/xmlhttprequest.sky » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <link rel="import" href="/mojo/public/html/core.html" as="core" />
2 <link rel="import" href="/mojo/public/html/connection.html" as="connection" />
3 <script>
4 function wrapHandle(handle, service, client) {
5 var clientClass = client && service.client.delegatingStubClass;
6 var serviceConnection = new connection.Connection(
7 handle, clientClass, service.proxyClass);
8 if (serviceConnection.local)
9 serviceConnection.local.delegate$ = client;
10 serviceConnection.remote.connection$ = serviceConnection;
11 return serviceConnection.remote;
12 }
13
14 function connectToService(url, service, client) {
15 var handle = internals.connectToService(url, service.name);
16 return wrapHandle(handle, service, client);
17 }
18
19 this.exports = {
20 connectToService: connectToService,
21 wrapHandle: wrapHandle,
22 };
23 </script>
OLDNEW
« no previous file with comments | « no previous file | sky/framework/xmlhttprequest.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698