electron/brightray/browser/browser_context.cc

191 lines
5.7 KiB
C++
Raw Normal View History

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.
#include "browser/browser_context.h"
2013-03-13 19:12:05 +00:00
2015-01-19 00:59:57 +00:00
#include "browser/brightray_paths.h"
#include "browser/inspectable_web_contents_impl.h"
#include "browser/network_delegate.h"
2015-05-22 06:50:41 +00:00
#include "browser/permission_manager.h"
#include "common/application_info.h"
2013-03-13 19:12:05 +00:00
#include "base/files/file_path.h"
#include "base/path_service.h"
#include "base/prefs/json_pref_store.h"
#include "base/prefs/pref_registry_simple.h"
#include "base/prefs/pref_service.h"
#include "base/prefs/pref_service_factory.h"
2013-03-13 19:12:05 +00:00
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/resource_context.h"
#include "content/public/browser/storage_partition.h"
2015-06-08 16:07:48 +00:00
#include "net/ssl/client_cert_store.h"
#if defined(USE_NSS_CERTS)
#include "net/ssl/client_cert_store_nss.h"
#elif defined(OS_WIN)
#include "net/ssl/client_cert_store_win.h"
#elif defined(OS_MACOSX)
#include "net/ssl/client_cert_store_mac.h"
#endif
2013-03-13 19:12:05 +00:00
2014-08-13 07:09:26 +00:00
using content::BrowserThread;
2013-03-13 19:12:05 +00:00
namespace brightray {
class BrowserContext::ResourceContext : public content::ResourceContext {
public:
2013-03-13 19:12:05 +00:00
ResourceContext() : getter_(nullptr) {}
void set_url_request_context_getter(URLRequestContextGetter* getter) {
getter_ = getter;
}
private:
2015-06-05 04:07:27 +00:00
net::HostResolver* GetHostResolver() override {
2013-03-13 19:12:05 +00:00
return getter_->host_resolver();
}
2015-06-05 04:07:27 +00:00
net::URLRequestContext* GetRequestContext() override {
2013-03-13 19:12:05 +00:00
return getter_->GetURLRequestContext();
}
2015-06-08 16:07:48 +00:00
scoped_ptr<net::ClientCertStore> CreateClientCertStore() override {
#if defined(USE_NSS_CERTS)
return scoped_ptr<net::ClientCertStore>(new net::ClientCertStoreNSS(
net::ClientCertStoreNSS::PasswordDelegateFactory()));
#elif defined(OS_WIN)
2015-06-10 11:30:35 +00:00
return scoped_ptr<net::ClientCertStore>(new net::ClientCertStoreWin());
2015-06-08 16:07:48 +00:00
#elif defined(OS_MACOSX)
return scoped_ptr<net::ClientCertStore>(new net::ClientCertStoreMac());
#elif defined(USE_OPENSSL)
return scoped_ptr<net::ClientCertStore>();
#endif
}
2013-03-13 19:12:05 +00:00
URLRequestContextGetter* getter_;
};
BrowserContext::BrowserContext() : resource_context_(new ResourceContext) {
}
void BrowserContext::Initialize() {
2015-01-19 00:59:57 +00:00
if (!PathService::Get(DIR_USER_DATA, &path_)) {
2015-01-19 01:19:25 +00:00
PathService::Get(DIR_APP_DATA, &path_);
2015-01-19 00:59:57 +00:00
path_ = path_.Append(base::FilePath::FromUTF8Unsafe(GetApplicationName()));
PathService::Override(DIR_USER_DATA, path_);
}
auto prefs_path = GetPath().Append(FILE_PATH_LITERAL("Preferences"));
base::PrefServiceFactory prefs_factory;
prefs_factory.SetUserPrefsFile(prefs_path,
JsonPrefStore::GetTaskRunnerForFile(
prefs_path, BrowserThread::GetBlockingPool()).get());
auto registry = make_scoped_refptr(new PrefRegistrySimple);
RegisterInternalPrefs(registry.get());
RegisterPrefs(registry.get());
prefs_ = prefs_factory.Create(registry.get());
2013-03-13 19:12:05 +00:00
}
BrowserContext::~BrowserContext() {
2014-08-13 07:09:26 +00:00
BrowserThread::DeleteSoon(BrowserThread::IO,
FROM_HERE,
resource_context_.release());
2013-03-13 19:12:05 +00:00
}
void BrowserContext::RegisterInternalPrefs(PrefRegistrySimple* registry) {
InspectableWebContentsImpl::RegisterPrefs(registry);
}
net::URLRequestContextGetter* BrowserContext::CreateRequestContext(
content::ProtocolHandlerMap* protocol_handlers,
2014-08-31 10:43:01 +00:00
content::URLRequestInterceptorScopedVector protocol_interceptors) {
DCHECK(!url_request_getter_.get());
url_request_getter_ = new URLRequestContextGetter(
this,
2013-03-13 19:12:05 +00:00
GetPath(),
2014-08-13 07:09:26 +00:00
BrowserThread::UnsafeGetMessageLoopForThread(BrowserThread::IO),
BrowserThread::UnsafeGetMessageLoopForThread(BrowserThread::FILE),
protocol_handlers,
protocol_interceptors.Pass());
2013-03-13 19:12:05 +00:00
resource_context_->set_url_request_context_getter(url_request_getter_.get());
return url_request_getter_.get();
}
net::NetworkDelegate* BrowserContext::CreateNetworkDelegate() {
return new NetworkDelegate;
}
base::FilePath BrowserContext::GetPath() const {
return path_;
2013-03-13 19:12:05 +00:00
}
2015-03-09 02:56:45 +00:00
scoped_ptr<content::ZoomLevelDelegate> BrowserContext::CreateZoomLevelDelegate(
const base::FilePath& partition_path) {
return scoped_ptr<content::ZoomLevelDelegate>();
}
2013-03-13 19:12:05 +00:00
bool BrowserContext::IsOffTheRecord() const {
return false;
}
net::URLRequestContextGetter* BrowserContext::GetRequestContext() {
return GetDefaultStoragePartition(this)->GetURLRequestContext();
}
net::URLRequestContextGetter* BrowserContext::GetRequestContextForRenderProcess(
int renderer_child_id) {
2013-03-13 19:12:05 +00:00
return GetRequestContext();
}
net::URLRequestContextGetter* BrowserContext::GetMediaRequestContext() {
return GetRequestContext();
}
net::URLRequestContextGetter*
BrowserContext::GetMediaRequestContextForRenderProcess(
int renderer_child_id) {
2013-03-13 19:12:05 +00:00
return GetRequestContext();
}
net::URLRequestContextGetter*
BrowserContext::GetMediaRequestContextForStoragePartition(
const base::FilePath& partition_path,
bool in_memory) {
2013-03-13 19:12:05 +00:00
return GetRequestContext();
}
content::ResourceContext* BrowserContext::GetResourceContext() {
return resource_context_.get();
}
content::DownloadManagerDelegate* BrowserContext::GetDownloadManagerDelegate() {
return nullptr;
2013-03-13 19:12:05 +00:00
}
2014-08-31 10:43:01 +00:00
content::BrowserPluginGuestManager* BrowserContext::GetGuestManager() {
return nullptr;
2013-03-13 19:12:05 +00:00
}
2014-12-05 22:31:02 +00:00
storage::SpecialStoragePolicy* BrowserContext::GetSpecialStoragePolicy() {
return nullptr;
2013-03-13 19:12:05 +00:00
}
2014-08-31 10:43:01 +00:00
content::PushMessagingService* BrowserContext::GetPushMessagingService() {
return nullptr;
2014-07-27 10:44:39 +00:00
}
2014-10-11 08:38:27 +00:00
content::SSLHostStateDelegate* BrowserContext::GetSSLHostStateDelegate() {
return nullptr;
}
2015-05-22 06:50:41 +00:00
content::PermissionManager* BrowserContext::GetPermissionManager() {
if (!permission_manager_.get())
permission_manager_.reset(new PermissionManager);
return permission_manager_.get();
}
} // namespace brightray