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
|
|
|
|
2016-09-21 23:24:03 +00:00
|
|
|
#include "atom/browser/net/atom_cookie_delegate.h"
|
2013-04-15 16:25:08 +00:00
|
|
|
#include "brightray/browser/browser_context.h"
|
2016-09-21 23:24:03 +00:00
|
|
|
#include "net/cookies/cookie_monster.h"
|
2013-04-15 16:25:08 +00:00
|
|
|
|
|
|
|
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;
|
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(
|
2016-07-12 12:53:19 +00:00
|
|
|
const std::string& partition, bool in_memory,
|
|
|
|
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);
|
|
|
|
|
2014-08-20 07:30:32 +00:00
|
|
|
// brightray::URLRequestContextGetter::Delegate:
|
2015-12-01 04:52:22 +00:00
|
|
|
net::NetworkDelegate* CreateNetworkDelegate() override;
|
2016-09-21 23:24:03 +00:00
|
|
|
net::CookieMonsterDelegate* CreateCookieDelegate() 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;
|
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
|
|
|
AtomNetworkDelegate* network_delegate() const { return network_delegate_; }
|
2016-09-21 23:24:03 +00:00
|
|
|
AtomCookieDelegate* cookie_delegate() const {
|
|
|
|
return cookie_delegate_.get();
|
|
|
|
}
|
2015-12-01 04:52:22 +00:00
|
|
|
|
2016-07-12 12:39:54 +00:00
|
|
|
protected:
|
2016-07-12 13:05:07 +00:00
|
|
|
AtomBrowserContext(const std::string& partition, bool in_memory,
|
|
|
|
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
|
|
|
|
2015-09-05 12:54:36 +00:00
|
|
|
// Managed by brightray::BrowserContext.
|
2015-12-01 04:52:22 +00:00
|
|
|
AtomNetworkDelegate* network_delegate_;
|
2016-09-21 23:24:03 +00:00
|
|
|
scoped_refptr<AtomCookieDelegate> cookie_delegate_;
|
2015-10-19 20:12:17 +00:00
|
|
|
|
2013-04-15 16:25:08 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomBrowserContext);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
|