OLD | NEW |
| (Empty) |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 module mojo; | |
6 | |
7 import "mojo/public/interfaces/network/url_request.mojom"; | |
8 import "mojo/public/interfaces/network/url_response.mojom"; | |
9 | |
10 interface AuthenticatingURLLoader { | |
11 // Loads the given |request|, asynchronously producing |response|. If the | |
12 // server indicates that authentication is needed, attempts to obtain an | |
13 // OAuth2 token from the user and use that as authentication. Consult | |
14 // |response| to determine if the request resulted in an error, was | |
15 // redirected, or has a response body to be consumed. | |
16 Start(URLRequest request) => (URLResponse response); | |
17 | |
18 // If the request passed to |Start| had |auto_follow_redirects| set to false, | |
19 // then upon receiving an URLResponse with a non-NULL |redirect_url| field, | |
20 // |FollowRedirect| may be called to load the URL indicated by the redirect. | |
21 FollowRedirect() => (URLResponse response); | |
22 }; | |
OLD | NEW |