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

Unified Diff: net/spdy/spdy_test_util_common.cc

Issue 1547273003: Set trusted SPDY proxy dynamically on per-profile basis (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: net/spdy/spdy_test_util_common.cc
diff --git a/net/spdy/spdy_test_util_common.cc b/net/spdy/spdy_test_util_common.cc
index 6a2879480215d37315b1cfd4f48546f911d3f846..7a54ae6af1a26aa02a680a2ebb21ec5269f92924 100644
--- a/net/spdy/spdy_test_util_common.cc
+++ b/net/spdy/spdy_test_util_common.cc
@@ -13,6 +13,7 @@
#include "base/memory/scoped_ptr.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
+#include "net/base/trusted_spdy_proxy_provider.h"
#include "net/cert/mock_cert_verifier.h"
#include "net/http/http_cache.h"
#include "net/http/http_network_session.h"
@@ -436,7 +437,8 @@ HttpNetworkSession::Params SpdySessionDependencies::CreateSessionParams(
session_deps->stream_max_recv_window_size;
params.time_func = session_deps->time_func;
params.next_protos = session_deps->next_protos;
- params.trusted_spdy_proxy = session_deps->trusted_spdy_proxy;
+ params.trusted_spdy_proxy_provider =
+ session_deps->trusted_spdy_proxy_provider;
params.use_alternative_services = session_deps->use_alternative_services;
params.net_log = session_deps->net_log;
return params;

Powered by Google App Engine
This is Rietveld 408576698