// Copyright 2013 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. #ifndef MOJO_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ #define MOJO_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ #include "base/files/file_path.h" #include "base/memory/scoped_ptr.h" #include "base/message_loop/message_loop_proxy.h" #include "net/base/network_delegate.h" #include "net/http/transport_security_persister.h" #include "net/url_request/url_request_context_getter.h" #include "net/url_request/url_request_context_storage.h" namespace mojo { namespace shell { class URLRequestContextGetter : public net::URLRequestContextGetter { public: URLRequestContextGetter( base::FilePath base_path, base::SingleThreadTaskRunner* network_task_runner, base::SingleThreadTaskRunner* file_task_runner, base::MessageLoopProxy* cache_task_runner, scoped_ptr network_delegate); virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE; virtual scoped_refptr GetNetworkTaskRunner() const OVERRIDE; protected: virtual ~URLRequestContextGetter(); private: base::FilePath base_path_; scoped_refptr file_task_runner_; scoped_refptr network_task_runner_; scoped_refptr cache_task_runner_; scoped_ptr network_delegate_; scoped_ptr net_log_; scoped_ptr storage_; scoped_ptr url_request_context_; scoped_ptr transport_security_persister_; DISALLOW_COPY_AND_ASSIGN(URLRequestContextGetter); }; } // namespace shell } // namespace mojo #endif // MOJO_SHELL_URL_REQUEST_CONTEXT_GETTER_H_