2013-03-13 19:12:05 +00:00
|
|
|
// Copyright (c) 2012 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-CHROMIUM file.
|
|
|
|
|
2013-03-13 19:42:16 +00:00
|
|
|
#ifndef BRIGHTRAY_BROWSER_URL_REQUEST_CONTEXT_GETTER_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_URL_REQUEST_CONTEXT_GETTER_H_
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2018-08-13 22:22:45 +00:00
|
|
|
#include "brightray/browser/net/url_request_context_getter_factory.h"
|
|
|
|
#include "content/public/browser/resource_context.h"
|
2017-12-15 17:32:33 +00:00
|
|
|
#include "net/url_request/url_request_context.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
#include "net/url_request/url_request_context_getter.h"
|
|
|
|
|
2018-03-30 13:24:55 +00:00
|
|
|
#if DCHECK_IS_ON()
|
|
|
|
#include "base/debug/leak_tracker.h"
|
|
|
|
#endif
|
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
namespace brightray {
|
|
|
|
|
2018-08-13 22:22:45 +00:00
|
|
|
class BrowserContext;
|
|
|
|
class ResourceContext;
|
2015-08-11 10:29:55 +00:00
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
class URLRequestContextGetter : public net::URLRequestContextGetter {
|
2013-11-17 23:43:46 +00:00
|
|
|
public:
|
2018-08-13 22:22:45 +00:00
|
|
|
URLRequestContextGetter(URLRequestContextGetterFactory* factory,
|
|
|
|
ResourceContext* resource_context);
|
2017-11-27 03:27:14 +00:00
|
|
|
|
2014-08-20 07:19:25 +00:00
|
|
|
// net::URLRequestContextGetter:
|
2015-06-05 04:07:27 +00:00
|
|
|
net::URLRequestContext* GetURLRequestContext() override;
|
2017-03-23 22:47:30 +00:00
|
|
|
scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner()
|
|
|
|
const override;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2018-08-13 22:22:45 +00:00
|
|
|
// Discard reference to URLRequestContext and inform observers to
|
|
|
|
// shutdown. Must be called only on IO thread.
|
|
|
|
void NotifyContextShuttingDown();
|
2018-03-30 13:24:55 +00:00
|
|
|
|
2014-08-20 07:19:25 +00:00
|
|
|
private:
|
2018-08-13 22:22:45 +00:00
|
|
|
friend class BrowserContext;
|
2018-04-17 23:23:40 +00:00
|
|
|
|
2018-08-13 22:22:45 +00:00
|
|
|
// Responsible for destroying URLRequestContextGetter
|
|
|
|
// on the IO thread.
|
|
|
|
class Handle {
|
|
|
|
public:
|
|
|
|
explicit Handle(base::WeakPtr<BrowserContext> browser_context);
|
|
|
|
~Handle();
|
|
|
|
|
|
|
|
scoped_refptr<URLRequestContextGetter> CreateMainRequestContextGetter(
|
|
|
|
URLRequestContextGetterFactory* factory);
|
|
|
|
content::ResourceContext* GetResourceContext() const;
|
|
|
|
scoped_refptr<URLRequestContextGetter> GetMediaRequestContextGetter() const;
|
|
|
|
|
|
|
|
void ShutdownOnUIThread();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void LazyInitialize() const;
|
2014-08-20 06:39:09 +00:00
|
|
|
|
2018-08-13 22:22:45 +00:00
|
|
|
scoped_refptr<URLRequestContextGetter> main_request_context_getter_;
|
|
|
|
scoped_refptr<URLRequestContextGetter> media_request_context_getter_;
|
|
|
|
std::unique_ptr<ResourceContext> resource_context_;
|
|
|
|
base::WeakPtr<BrowserContext> browser_context_;
|
|
|
|
mutable bool initialized_;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2018-08-13 22:22:45 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(Handle);
|
|
|
|
};
|
|
|
|
|
|
|
|
~URLRequestContextGetter() override;
|
2016-06-22 06:52:04 +00:00
|
|
|
|
2018-03-30 13:24:55 +00:00
|
|
|
#if DCHECK_IS_ON()
|
|
|
|
base::debug::LeakTracker<URLRequestContextGetter> leak_tracker_;
|
|
|
|
#endif
|
|
|
|
|
2018-08-13 22:22:45 +00:00
|
|
|
std::unique_ptr<URLRequestContextGetterFactory> factory_;
|
2016-06-15 11:30:26 +00:00
|
|
|
|
2018-08-13 22:22:45 +00:00
|
|
|
ResourceContext* resource_context_;
|
|
|
|
net::URLRequestContext* url_request_context_;
|
2018-03-30 13:24:55 +00:00
|
|
|
bool context_shutting_down_;
|
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(URLRequestContextGetter);
|
|
|
|
};
|
|
|
|
|
2013-11-17 23:20:17 +00:00
|
|
|
} // namespace brightray
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2017-05-18 22:05:25 +00:00
|
|
|
#endif // BRIGHTRAY_BROWSER_URL_REQUEST_CONTEXT_GETTER_H_
|