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