Lines Matching full:globals
206 // See IOThread::Globals for details.
208 ConstructProxyScriptFetcherContext(IOThread::Globals* globals,
212 context->set_host_resolver(globals->host_resolver.get());
213 context->set_cert_verifier(globals->cert_verifier.get());
215 globals->transport_security_state.get());
217 globals->cert_transparency_verifier.get());
219 globals->http_auth_handler_factory.get());
220 context->set_proxy_service(globals->proxy_script_fetcher_proxy_service.get());
222 globals->proxy_script_fetcher_http_transaction_factory.get());
224 globals->proxy_script_fetcher_url_request_job_factory.get());
225 context->set_cookie_store(globals->system_cookie_store.get());
227 globals->system_server_bound_cert_service.get());
228 context->set_network_delegate(globals->system_network_delegate.get());
230 globals->http_user_agent_settings.get());
238 ConstructSystemRequestContext(IOThread::Globals* globals,
242 context->set_host_resolver(globals->host_resolver.get());
243 context->set_cert_verifier(globals->cert_verifier.get());
245 globals->transport_security_state.get());
247 globals->cert_transparency_verifier.get());
249 globals->http_auth_handler_factory.get());
250 context->set_proxy_service(globals->system_proxy_service.get());
252 globals->system_http_transaction_factory.get());
253 context->set_cookie_store(globals->system_cookie_store.get());
255 globals->system_server_bound_cert_service.get());
256 context->set_throttler_manager(globals->throttler_manager.get());
257 context->set_network_delegate(globals->system_network_delegate.get());
259 globals->http_user_agent_settings.get());
363 DCHECK(io_thread_->globals()->system_request_context.get());
365 return io_thread_->globals()->system_request_context.get();
373 IOThread::Globals::
375 Globals* globals)
376 : globals_(globals) {
380 IOThread::Globals::
386 IOThread::Globals::Globals()
395 IOThread::Globals::~Globals() {}
470 IOThread::Globals* IOThread::globals() {
475 void IOThread::SetGlobalsForTesting(Globals* globals) {
477 DCHECK(!globals || !globals_);
478 globals_ = globals;
518 globals_ = new Globals;
790 // to move this option to IOThread::Globals &
1046 globals()->host_resolver->SetDnsClientEnabled(*dns_client_enabled_);