Chromium Code Reviews| Index: content/common/url_loader_factory.mojom |
| diff --git a/content/common/url_loader_factory.mojom b/content/common/url_loader_factory.mojom |
| index afaa3640ef2abbf6c4fa9a5bdcdf0217e33fbbc9..1d8dcabf6f9b256100f15381e6e47d48df0fde46 100644 |
| --- a/content/common/url_loader_factory.mojom |
| +++ b/content/common/url_loader_factory.mojom |
| @@ -9,6 +9,11 @@ import "url_loader.mojom"; |
| [Native] |
| struct URLSyncLoadResult; |
| +enum URLLoadOptions { |
|
yzshen1
2017/04/13 20:43:51
Mojo enum is mapped to enum class, which we usuall
jam
2017/04/13 21:07:29
Done.
|
| + kNone = 0, |
| + kSendSSLInfo = 1, |
| +}; |
| + |
| interface URLLoaderFactory { |
| // Creats a URLLoader and starts loading with the given |request|. |client|'s |
| // method will be called when certain events related to that loading |
| @@ -17,6 +22,7 @@ interface URLLoaderFactory { |
| CreateLoaderAndStart(associated URLLoader& loader, |
| int32 routing_id, |
| int32 request_id, |
| + int32 options, |
|
yzshen1
2017/04/13 20:43:51
- Please consider using uint32.
- Please add comme
jam
2017/04/13 21:07:29
Done.
|
| URLRequest request, |
| URLLoaderClient client); |