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

Unified Diff: components/network_session_configurator/network_session_configurator.h

Issue 1892123003: Add components/network_session_configurator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on https://crrev.com/1945513002. Created 4 years, 7 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: components/network_session_configurator/network_session_configurator.h
diff --git a/components/network_session_configurator/network_session_configurator.h b/components/network_session_configurator/network_session_configurator.h
new file mode 100644
index 0000000000000000000000000000000000000000..4af164810b15063ed188527c55314242928b6892
--- /dev/null
+++ b/components/network_session_configurator/network_session_configurator.h
@@ -0,0 +1,33 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Helper functions to configure HttpNetworkSession::Params based on field
+// trials, policy, and command line.
+
+#ifndef COMPONENTS_NETWORK_SESSION_CONFIGURATOR_NETWORK_SESSION_CONFIGURATOR_H_
+#define COMPONENTS_NETWORK_SESSION_CONFIGURATOR_NETWORK_SESSION_CONFIGURATOR_H_
+
+#include <string>
+
+#include "base/command_line.h"
+#include "net/http/http_network_session.h"
+
+namespace network_session_configurator {
+
+// Configure |params| based on field trials and policy arguments.
+void ParseFieldTrials(bool is_spdy_allowed_by_policy,
+ bool is_quic_allowed_by_policy,
+ const std::string& quic_user_agent_id,
+ net::HttpNetworkSession::Params* params);
+
+// Configure |params| based on field trials, policy arguments,
+// and command line.
+void ParseFieldTrialsAndCommandLine(bool is_spdy_allowed_by_policy,
+ bool is_quic_allowed_by_policy,
+ const std::string& quic_user_agent_id,
+ net::HttpNetworkSession::Params* params);
+
+} // namespace network_session_configurator
+
+#endif // COMPONENTS_NETWORK_SESSION_CONFIGURATOR_NETWORK_SESSION_CONFIGURATOR_H_

Powered by Google App Engine
This is Rietveld 408576698