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