#ifndef COMPONENTS_NETWORK_SESSION_CONFIGURATOR_BROWSER_NETWORK_SESSION_CONFIGURATOR_H_
#define COMPONENTS_NETWORK_SESSION_CONFIGURATOR_BROWSER_NETWORK_SESSION_CONFIGURATOR_H_
#include "net/quic/quic_context.h"
#include "net/url_request/url_request_context_builder.h"
namespace base {
class CommandLine;
}
namespace net {
struct HttpNetworkSessionParams;
}
namespace network_session_configurator {
void ParseCommandLineAndFieldTrials(const base::CommandLine& command_line,
bool is_quic_force_disabled,
net::HttpNetworkSessionParams* params,
net::QuicParams* quic_params);
net::URLRequestContextBuilder::HttpCacheParams::Type ChooseCacheType();
}
#endif