HomeSort by relevance Sort by last modified time
    Searched refs:HttpStreamFactory (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium/net/http/
http_stream_factory.cc 18 const HostMappingRules* HttpStreamFactory::host_mapping_rules_ = NULL;
20 const std::string* HttpStreamFactory::next_protos_ = NULL;
22 bool HttpStreamFactory::spdy_enabled_ = true;
24 bool HttpStreamFactory::use_alternate_protocols_ = false;
26 bool HttpStreamFactory::force_spdy_over_ssl_ = true;
28 bool HttpStreamFactory::force_spdy_always_ = false;
30 std::list<HostPortPair>* HttpStreamFactory::forced_spdy_exclusions_ = NULL;
32 bool HttpStreamFactory::ignore_certificate_errors_ = false;
34 HttpStreamFactory::~HttpStreamFactory() {}
    [all...]
http_network_layer.cc 94 HttpStreamFactory::set_spdy_enabled(false);
97 HttpStreamFactory::set_force_spdy_over_ssl(false);
98 HttpStreamFactory::set_force_spdy_always(true);
100 HttpStreamFactory::set_force_spdy_over_ssl(true);
101 HttpStreamFactory::set_force_spdy_always(true);
105 HttpStreamFactory::add_forced_spdy_exclusion(value);
109 HttpStreamFactory::set_use_alternate_protocols(use_alt_protocols);
110 HttpStreamFactory::set_next_protos(kNpnProtosFull);
114 HttpStreamFactory::set_use_alternate_protocols(false);
115 HttpStreamFactory::set_next_protos(kNpnProtosHttpOnly)
    [all...]
http_network_session_peer.h 16 class HttpStreamFactory;
46 void SetHttpStreamFactory(HttpStreamFactory* http_stream_factory);
http_stream_factory.h 145 // The HttpStreamFactory defines an interface for creating usable HttpStreams.
146 class HttpStreamFactory {
148 virtual ~HttpStreamFactory();
229 HttpStreamFactory();
243 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactory);
http_network_session.h 124 HttpStreamFactory* http_stream_factory() {
173 scoped_ptr<HttpStreamFactory> http_stream_factory_;
http_network_session_peer.cc 72 HttpStreamFactory* http_stream_factory) {
http_stream_factory_impl.h 22 class HttpStreamFactoryImpl : public HttpStreamFactory {
27 // HttpStreamFactory Interface
http_stream_factory_impl_job.cc 57 force_spdy_always_(HttpStreamFactory::force_spdy_always()),
58 force_spdy_over_ssl_(HttpStreamFactory::force_spdy_over_ssl()),
502 return rv && !HttpStreamFactory::HasSpdyExclusion(origin_);
507 return rv && !HttpStreamFactory::HasSpdyExclusion(origin_);
979 if (HttpStreamFactory::ignore_certificate_errors()
    [all...]
http_network_transaction_unittest.cc     [all...]
http_stream_factory_impl.cc 148 if (HttpStreamFactory::HasSpdyExclusion(origin))
  /external/chromium_org/net/http/
http_network_session_peer.h 16 class HttpStreamFactory;
30 void SetHttpStreamFactory(scoped_ptr<HttpStreamFactory> http_stream_factory);
32 scoped_ptr<HttpStreamFactory> http_stream_factory_for_websocket);
http_stream_factory.cc 20 std::vector<std::string>* HttpStreamFactory::next_protos_ = NULL;
22 bool HttpStreamFactory::enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS];
24 bool HttpStreamFactory::spdy_enabled_ = true;
26 bool HttpStreamFactory::use_alternate_protocols_ = false;
28 bool HttpStreamFactory::force_spdy_over_ssl_ = true;
30 bool HttpStreamFactory::force_spdy_always_ = false;
32 std::list<HostPortPair>* HttpStreamFactory::forced_spdy_exclusions_ = NULL;
34 HttpStreamFactory::~HttpStreamFactory() {}
37 bool HttpStreamFactory::IsProtocolEnabled(AlternateProtocol protocol)
    [all...]
http_network_session_peer.cc 33 scoped_ptr<HttpStreamFactory> http_stream_factory) {
38 scoped_ptr<HttpStreamFactory> http_stream_factory) {
http_network_session.h 142 HttpStreamFactory* http_stream_factory() {
145 HttpStreamFactory* http_stream_factory_for_websocket() {
201 scoped_ptr<HttpStreamFactory> http_stream_factory_;
202 scoped_ptr<HttpStreamFactory> http_stream_factory_for_websocket_;
http_stream_factory.h 176 // The HttpStreamFactory defines an interface for creating usable HttpStreams.
177 class NET_EXPORT HttpStreamFactory {
179 virtual ~HttpStreamFactory();
298 HttpStreamFactory();
314 DISALLOW_COPY_AND_ASSIGN(HttpStreamFactory);
http_stream_factory_impl.h 29 public HttpStreamFactory,
38 // HttpStreamFactory interface
  /external/chromium_org/net/test/
net_test_suite.cc 19 net::HttpStreamFactory::ResetStaticSettingsToInit();
  /external/chromium_org/chrome/browser/
chrome_net_benchmarking_message_filter.cc 115 net::HttpStreamFactory::EnableNpnSpdy3();
118 net::HttpStreamFactory::EnableNpnHttpOnly();
io_thread.cc 768 net::HttpStreamFactory::EnableNpnHttp2Draft04();
770 net::HttpStreamFactory::EnableNpnSpdy4a2();
772 net::HttpStreamFactory::EnableNpnSpdy3();
774 net::HttpStreamFactory::EnableNpnSpdy31WithSpdy2();
776 net::HttpStreamFactory::EnableNpnHttpOnly();
780 net::HttpStreamFactory::set_spdy_enabled(false);
783 net::HttpStreamFactory::EnableNpnSpdy31();
823 net::HttpStreamFactory::set_spdy_enabled(false);
826 net::HttpStreamFactory::set_force_spdy_over_ssl(false);
827 net::HttpStreamFactory::set_force_spdy_always(true)
    [all...]
  /external/chromium/chrome/browser/net/
net_pref_observer.cc 62 net::HttpStreamFactory::set_spdy_enabled(!*spdy_disabled_);
preconnect.cc 102 net::HttpStreamFactory* http_stream_factory = session->http_stream_factory();
  /external/chromium_org/chrome/browser/net/
net_pref_observer.cc 47 net::HttpStreamFactory::set_spdy_enabled(!*spdy_disabled_);
preconnect.cc 112 net::HttpStreamFactory* http_stream_factory = session->http_stream_factory();
  /external/chromium_org/net/quic/
quic_network_transaction_unittest.cc 86 HttpStreamFactory::set_use_alternate_protocols(false);
87 HttpStreamFactory::SetNextProtos(std::vector<NextProto>());
455 HttpStreamFactory::EnableNpnSpdy3(); // Enables QUIC too.
508 HttpStreamFactory::EnableNpnSpdy3(); // Enables QUIC too.
558 HttpStreamFactory::EnableNpnSpdy3(); // Enables QUIC too.
617 HttpStreamFactory::EnableNpnSpdy3(); // Enables QUIC too.
654 HttpStreamFactory::EnableNpnSpdy3(); // Enables QUIC too.
701 HttpStreamFactory::EnableNpnSpdy3(); // Enables QUIC too.
760 HttpStreamFactory::EnableNpnSpdy3(); // Enables QUIC too.
791 HttpStreamFactory::EnableNpnSpdy3(); // Enables QUIC too
    [all...]
  /external/chromium_org/android_webview/browser/net/
aw_url_request_context_getter.cc 218 net::HttpStreamFactory::EnableNpnSpdy31();

Completed in 734 milliseconds

1 2