2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-15 16:25:08 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
|
|
|
|
#define ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
|
|
|
|
|
2015-07-14 19:16:13 +00:00
|
|
|
#include <string>
|
2016-08-04 06:45:45 +00:00
|
|
|
#include <vector>
|
2015-07-14 19:16:13 +00:00
|
|
|
|
2017-11-28 07:23:42 +00:00
|
|
|
#include "base/callback_list.h"
|
2013-04-15 16:25:08 +00:00
|
|
|
#include "brightray/browser/browser_context.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2016-08-31 00:08:32 +00:00
|
|
|
class AtomBlobReader;
|
2015-06-22 11:43:49 +00:00
|
|
|
class AtomDownloadManagerDelegate;
|
2015-12-01 04:52:22 +00:00
|
|
|
class AtomNetworkDelegate;
|
2016-01-30 11:19:18 +00:00
|
|
|
class AtomPermissionManager;
|
2014-10-22 14:55:13 +00:00
|
|
|
class WebViewManager;
|
2017-11-28 07:23:42 +00:00
|
|
|
struct CookieDetails;
|
2013-09-20 08:47:47 +00:00
|
|
|
|
2013-04-15 16:25:08 +00:00
|
|
|
class AtomBrowserContext : public brightray::BrowserContext {
|
|
|
|
public:
|
2016-07-12 12:39:54 +00:00
|
|
|
// Get or create the BrowserContext according to its |partition| and
|
2016-07-12 12:53:19 +00:00
|
|
|
// |in_memory|. The |options| will be passed to constructor when there is no
|
|
|
|
// existing BrowserContext.
|
2016-07-12 12:39:54 +00:00
|
|
|
static scoped_refptr<AtomBrowserContext> From(
|
2018-04-18 01:44:10 +00:00
|
|
|
const std::string& partition,
|
|
|
|
bool in_memory,
|
2016-07-12 12:53:19 +00:00
|
|
|
const base::DictionaryValue& options = base::DictionaryValue());
|
2015-10-19 20:12:17 +00:00
|
|
|
|
2016-06-22 06:57:51 +00:00
|
|
|
void SetUserAgent(const std::string& user_agent);
|
2017-11-28 07:23:42 +00:00
|
|
|
// Register callbacks that needs to notified on any cookie store changes.
|
|
|
|
std::unique_ptr<base::CallbackList<void(const CookieDetails*)>::Subscription>
|
|
|
|
RegisterCookieChangeCallback(
|
|
|
|
const base::Callback<void(const CookieDetails*)>& cb);
|
2016-06-22 06:57:51 +00:00
|
|
|
|
2014-08-20 07:30:32 +00:00
|
|
|
// brightray::URLRequestContextGetter::Delegate:
|
2017-12-15 17:32:33 +00:00
|
|
|
std::unique_ptr<net::NetworkDelegate> CreateNetworkDelegate() override;
|
2015-07-14 18:40:07 +00:00
|
|
|
std::string GetUserAgent() override;
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<net::URLRequestJobFactory> CreateURLRequestJobFactory(
|
2016-06-15 11:31:29 +00:00
|
|
|
content::ProtocolHandlerMap* protocol_handlers) override;
|
2015-01-05 21:40:38 +00:00
|
|
|
net::HttpCache::BackendFactory* CreateHttpCacheBackendFactory(
|
|
|
|
const base::FilePath& base_path) override;
|
2017-11-15 13:09:22 +00:00
|
|
|
std::unique_ptr<net::CertVerifier> CreateCertVerifier(
|
|
|
|
brightray::RequireCTDelegate* ct_delegate) override;
|
2016-08-04 06:45:45 +00:00
|
|
|
std::vector<std::string> GetCookieableSchemes() override;
|
2017-11-28 07:23:42 +00:00
|
|
|
void NotifyCookieChange(const net::CanonicalCookie& cookie,
|
|
|
|
bool removed,
|
2018-04-08 17:50:21 +00:00
|
|
|
net::CookieChangeCause cause) override;
|
2014-10-22 14:55:13 +00:00
|
|
|
|
|
|
|
// content::BrowserContext:
|
2015-06-22 11:43:49 +00:00
|
|
|
content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
|
2014-12-16 01:15:56 +00:00
|
|
|
content::BrowserPluginGuestManager* GetGuestManager() override;
|
2016-01-30 11:19:18 +00:00
|
|
|
content::PermissionManager* GetPermissionManager() override;
|
2015-07-27 01:09:32 +00:00
|
|
|
|
2015-07-29 06:03:07 +00:00
|
|
|
// brightray::BrowserContext:
|
2015-07-26 08:17:55 +00:00
|
|
|
void RegisterPrefs(PrefRegistrySimple* pref_registry) override;
|
2015-10-19 20:12:17 +00:00
|
|
|
|
2016-08-31 00:08:32 +00:00
|
|
|
AtomBlobReader* GetBlobReader();
|
2015-12-01 04:52:22 +00:00
|
|
|
|
2018-03-30 13:24:55 +00:00
|
|
|
void set_cookie_change_subscription(
|
|
|
|
std::unique_ptr<
|
|
|
|
base::CallbackList<void(const CookieDetails*)>::Subscription>
|
|
|
|
subscription) {
|
|
|
|
cookie_change_subscription_.swap(subscription);
|
|
|
|
}
|
|
|
|
|
2016-07-12 12:39:54 +00:00
|
|
|
protected:
|
2018-04-18 01:44:10 +00:00
|
|
|
AtomBrowserContext(const std::string& partition,
|
|
|
|
bool in_memory,
|
2016-07-12 13:05:07 +00:00
|
|
|
const base::DictionaryValue& options);
|
2016-07-12 12:39:54 +00:00
|
|
|
~AtomBrowserContext() override;
|
|
|
|
|
2013-04-15 16:25:08 +00:00
|
|
|
private:
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<AtomDownloadManagerDelegate> download_manager_delegate_;
|
|
|
|
std::unique_ptr<WebViewManager> guest_manager_;
|
|
|
|
std::unique_ptr<AtomPermissionManager> permission_manager_;
|
2016-08-31 00:08:32 +00:00
|
|
|
std::unique_ptr<AtomBlobReader> blob_reader_;
|
2016-06-22 06:46:46 +00:00
|
|
|
std::string user_agent_;
|
2016-07-12 13:05:07 +00:00
|
|
|
bool use_cache_;
|
2014-08-21 07:45:34 +00:00
|
|
|
|
2017-11-28 07:23:42 +00:00
|
|
|
base::CallbackList<void(const CookieDetails*)> cookie_change_sub_list_;
|
2018-03-30 13:24:55 +00:00
|
|
|
std::unique_ptr<base::CallbackList<void(const CookieDetails*)>::Subscription>
|
|
|
|
cookie_change_subscription_;
|
2017-11-28 07:23:42 +00:00
|
|
|
|
2013-04-15 16:25:08 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomBrowserContext);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
|