| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 content.mojom; | 5 module content.mojom; |
| 6 | 6 |
| 7 [Native] | 7 [Native] |
| 8 struct MutableNetworkTrafficAnnotationTag; |
| 9 |
| 10 [Native] |
| 8 struct URLRequest; | 11 struct URLRequest; |
| 9 | 12 |
| 10 [Native] | 13 [Native] |
| 11 struct URLResponseHead; | 14 struct URLResponseHead; |
| 12 | 15 |
| 13 [Native] | 16 [Native] |
| 14 struct SSLInfo; | 17 struct SSLInfo; |
| 15 | 18 |
| 16 [Native] | 19 [Native] |
| 17 struct URLRequestRedirectInfo; | 20 struct URLRequestRedirectInfo; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 95 |
| 93 // Called when the loader starts loading response body. This is called after | 96 // Called when the loader starts loading response body. This is called after |
| 94 // OnReceiveResponse is called. | 97 // OnReceiveResponse is called. |
| 95 OnStartLoadingResponseBody(handle<data_pipe_consumer> body); | 98 OnStartLoadingResponseBody(handle<data_pipe_consumer> body); |
| 96 | 99 |
| 97 // Called when the loading completes. No notification will be dispatched for | 100 // Called when the loading completes. No notification will be dispatched for |
| 98 // this client after this message arrives. | 101 // this client after this message arrives. |
| 99 OnComplete(URLLoaderStatus completion_status); | 102 OnComplete(URLLoaderStatus completion_status); |
| 100 }; | 103 }; |
| 101 | 104 |
| OLD | NEW |