Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Unified Diff: content/common/url_loader_factory.mojom

Issue 2817033002: Plumb the net::SSLInfo to the browser process when it's using the network service. (Closed)
Patch Set: add tests Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698