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

Unified Diff: sky/sdk/lib/framework/net/fetch.dart

Issue 1146813013: Sky: Use the authenticated network service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix formatting Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sky/tests/services/network.sky » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/net/fetch.dart
diff --git a/sky/sdk/lib/framework/net/fetch.dart b/sky/sdk/lib/framework/net/fetch.dart
index 199ab79c4248b02cbd4902b6fd710aae1bdc1a1b..720ac4cbc62f832179fa05b5f88f8a4499705d9f 100644
--- a/sky/sdk/lib/framework/net/fetch.dart
+++ b/sky/sdk/lib/framework/net/fetch.dart
@@ -24,7 +24,7 @@ Future<Response> fetch(String relativeUrl) async {
String url = Uri.base.resolve(relativeUrl).toString();
var net = new NetworkServiceProxy.unbound();
- shell.requestService("mojo:network_service", net);
+ shell.requestService("mojo:authenticated_network_service", net);
var loader = new UrlLoaderProxy.unbound();
net.ptr.createUrlLoader(loader);
« no previous file with comments | « no previous file | sky/tests/services/network.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698