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