| 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 import "mutable_network_traffic_annotation_tag.mojom"; | 7 import "mutable_network_traffic_annotation_tag.mojom"; |
| 8 import "url_loader.mojom"; | 8 import "url_loader.mojom"; |
| 9 | 9 |
| 10 [Native] | 10 [Native] |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 URLLoaderClient client, | 27 URLLoaderClient client, |
| 28 MutableNetworkTrafficAnnotationTag traffic_annotation); | 28 MutableNetworkTrafficAnnotationTag traffic_annotation); |
| 29 | 29 |
| 30 // Loads the resource for the given |request| synchronously. | 30 // Loads the resource for the given |request| synchronously. |
| 31 // |request_id| is for compatibility with the existing Chrome IPC. | 31 // |request_id| is for compatibility with the existing Chrome IPC. |
| 32 [Sync] SyncLoad(int32 routing_id, | 32 [Sync] SyncLoad(int32 routing_id, |
| 33 int32 request_id, | 33 int32 request_id, |
| 34 URLRequest request) | 34 URLRequest request) |
| 35 => (URLSyncLoadResult result); | 35 => (URLSyncLoadResult result); |
| 36 }; | 36 }; |
| OLD | NEW |