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

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 net::SSLInfo test 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
« no previous file with comments | « content/common/url_loader.mojom ('k') | content/network/network_service_url_loader_factory_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..5ef49b388958322243962c104ee560e8c3ea09e5 100644
--- a/content/common/url_loader_factory.mojom
+++ b/content/common/url_loader_factory.mojom
@@ -9,6 +9,10 @@ import "url_loader.mojom";
[Native]
struct URLSyncLoadResult;
+const uint32 kURLLoadOptionNone = 0;
+// Sends the net::SSLInfo struct in OnReceiveResponse.
+const uint32 kURLLoadOptionSendSSLInfo = 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 +21,7 @@ interface URLLoaderFactory {
CreateLoaderAndStart(associated URLLoader& loader,
int32 routing_id,
int32 request_id,
+ uint32 options,
URLRequest request,
URLLoaderClient client);
« no previous file with comments | « content/common/url_loader.mojom ('k') | content/network/network_service_url_loader_factory_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698