| Index: content/browser/storage_partition_impl.cc
|
| diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc
|
| index 439d9eabfb7ffb40e03c4b656e93a7505e4e1e29..20ed97addf3297edfed1b6dfb03a200234622c2b 100644
|
| --- a/content/browser/storage_partition_impl.cc
|
| +++ b/content/browser/storage_partition_impl.cc
|
| @@ -22,10 +22,12 @@
|
| #include "content/common/dom_storage/dom_storage_types.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/browser_thread.h"
|
| +#include "content/public/browser/content_browser_client.h"
|
| #include "content/public/browser/dom_storage_context.h"
|
| #include "content/public/browser/indexed_db_context.h"
|
| #include "content/public/browser/local_storage_usage_info.h"
|
| #include "content/public/browser/session_storage_usage_info.h"
|
| +#include "content/public/common/content_client.h"
|
| #include "net/base/completion_callback.h"
|
| #include "net/base/net_errors.h"
|
| #include "net/cookies/canonical_cookie.h"
|
| @@ -362,34 +364,11 @@ void StoragePartitionImpl::DataDeletionHelper::ClearQuotaManagedDataOnIOThread(
|
| StoragePartitionImpl::StoragePartitionImpl(
|
| BrowserContext* browser_context,
|
| const base::FilePath& partition_path,
|
| - storage::QuotaManager* quota_manager,
|
| - ChromeAppCacheService* appcache_service,
|
| - storage::FileSystemContext* filesystem_context,
|
| - storage::DatabaseTracker* database_tracker,
|
| - DOMStorageContextWrapper* dom_storage_context,
|
| - IndexedDBContextImpl* indexed_db_context,
|
| - CacheStorageContextImpl* cache_storage_context,
|
| - ServiceWorkerContextWrapper* service_worker_context,
|
| - storage::SpecialStoragePolicy* special_storage_policy,
|
| - HostZoomLevelContext* host_zoom_level_context,
|
| - PlatformNotificationContextImpl* platform_notification_context,
|
| - BackgroundSyncContext* background_sync_context,
|
| - scoped_refptr<BroadcastChannelProvider> broadcast_channel_provider)
|
| + storage::SpecialStoragePolicy* special_storage_policy)
|
| : partition_path_(partition_path),
|
| - quota_manager_(quota_manager),
|
| - appcache_service_(appcache_service),
|
| - filesystem_context_(filesystem_context),
|
| - database_tracker_(database_tracker),
|
| - dom_storage_context_(dom_storage_context),
|
| - indexed_db_context_(indexed_db_context),
|
| - cache_storage_context_(cache_storage_context),
|
| - service_worker_context_(service_worker_context),
|
| special_storage_policy_(special_storage_policy),
|
| - host_zoom_level_context_(host_zoom_level_context),
|
| - platform_notification_context_(platform_notification_context),
|
| - background_sync_context_(background_sync_context),
|
| - broadcast_channel_provider_(std::move(broadcast_channel_provider)),
|
| - browser_context_(browser_context) {}
|
| + browser_context_(browser_context),
|
| + weak_factory_(this) {}
|
|
|
| StoragePartitionImpl::~StoragePartitionImpl() {
|
| browser_context_ = nullptr;
|
| @@ -434,30 +413,38 @@ std::unique_ptr<StoragePartitionImpl> StoragePartitionImpl::Create(
|
| base::FilePath partition_path =
|
| context->GetPath().Append(relative_partition_path);
|
|
|
| + std::unique_ptr<StoragePartitionImpl> partition = base::WrapUnique(
|
| + new StoragePartitionImpl(
|
| + context, partition_path, context->GetSpecialStoragePolicy()));
|
| +
|
| // All of the clients have to be created and registered with the
|
| // QuotaManager prior to the QuotaManger being used. We do them
|
| // all together here prior to handing out a reference to anything
|
| // that utilizes the QuotaManager.
|
| - scoped_refptr<storage::QuotaManager> quota_manager =
|
| + partition->quota_manager_ =
|
| new storage::QuotaManager(
|
| in_memory, partition_path,
|
| BrowserThread::GetTaskRunnerForThread(BrowserThread::IO).get(),
|
| BrowserThread::GetTaskRunnerForThread(BrowserThread::DB).get(),
|
| - context->GetSpecialStoragePolicy());
|
| + context->GetSpecialStoragePolicy(),
|
| + base::Bind(&StoragePartitionImpl::GetTemporaryStorageConfiguration,
|
| + partition->weak_factory_.GetWeakPtr()));
|
| + scoped_refptr<storage::QuotaManagerProxy> quota_manager_proxy =
|
| + partition->quota_manager_->proxy();
|
|
|
| // Each consumer is responsible for registering its QuotaClient during
|
| // its construction.
|
| - scoped_refptr<storage::FileSystemContext> filesystem_context =
|
| + partition->filesystem_context_ =
|
| CreateFileSystemContext(
|
| - context, partition_path, in_memory, quota_manager->proxy());
|
| + context, partition_path, in_memory, quota_manager_proxy.get());
|
|
|
| - scoped_refptr<storage::DatabaseTracker> database_tracker =
|
| + partition->database_tracker_ =
|
| new storage::DatabaseTracker(
|
| partition_path, in_memory, context->GetSpecialStoragePolicy(),
|
| - quota_manager->proxy(),
|
| + quota_manager_proxy.get(),
|
| BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE).get());
|
|
|
| - scoped_refptr<DOMStorageContextWrapper> dom_storage_context =
|
| + partition->dom_storage_context_ =
|
| new DOMStorageContextWrapper(
|
| BrowserContext::GetShellConnectorFor(context),
|
| in_memory ? base::FilePath() : context->GetPath(),
|
| @@ -475,56 +462,38 @@ std::unique_ptr<StoragePartitionImpl> StoragePartitionImpl::Create(
|
| : NULL;
|
|
|
| base::FilePath path = in_memory ? base::FilePath() : partition_path;
|
| - scoped_refptr<IndexedDBContextImpl> indexed_db_context =
|
| + partition->indexed_db_context_ =
|
| new IndexedDBContextImpl(path,
|
| context->GetSpecialStoragePolicy(),
|
| - quota_manager->proxy(),
|
| + quota_manager_proxy.get(),
|
| idb_task_runner);
|
|
|
| - scoped_refptr<CacheStorageContextImpl> cache_storage_context =
|
| - new CacheStorageContextImpl(context);
|
| - cache_storage_context->Init(path, make_scoped_refptr(quota_manager->proxy()));
|
| + partition->cache_storage_context_ = new CacheStorageContextImpl(context);
|
| + partition->cache_storage_context_->Init(path, quota_manager_proxy);
|
|
|
| - scoped_refptr<ServiceWorkerContextWrapper> service_worker_context =
|
| - new ServiceWorkerContextWrapper(context);
|
| - service_worker_context->Init(path, quota_manager->proxy(),
|
| - context->GetSpecialStoragePolicy());
|
| + partition->service_worker_context_ = new ServiceWorkerContextWrapper(context);
|
| + partition->service_worker_context_->Init(
|
| + path, quota_manager_proxy.get(), context->GetSpecialStoragePolicy());
|
| + partition->service_worker_context_->set_storage_partition(partition.get());
|
|
|
| - scoped_refptr<ChromeAppCacheService> appcache_service =
|
| - new ChromeAppCacheService(quota_manager->proxy());
|
| + partition->appcache_service_ =
|
| + new ChromeAppCacheService(quota_manager_proxy.get());
|
|
|
| - scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy(
|
| - context->GetSpecialStoragePolicy());
|
| -
|
| - scoped_refptr<HostZoomLevelContext> host_zoom_level_context(
|
| + partition->host_zoom_level_context_ =
|
| new HostZoomLevelContext(
|
| - context->CreateZoomLevelDelegate(partition_path)));
|
| -
|
| - scoped_refptr<PlatformNotificationContextImpl> platform_notification_context =
|
| - new PlatformNotificationContextImpl(path, context,
|
| - service_worker_context);
|
| - platform_notification_context->Initialize();
|
| -
|
| - scoped_refptr<BackgroundSyncContext> background_sync_context =
|
| - new BackgroundSyncContext();
|
| - background_sync_context->Init(service_worker_context);
|
| + context->CreateZoomLevelDelegate(partition_path));
|
|
|
| - scoped_refptr<BroadcastChannelProvider>
|
| - broadcast_channel_provider = new BroadcastChannelProvider();
|
| + partition->platform_notification_context_ =
|
| + new PlatformNotificationContextImpl(
|
| + path, context, partition->service_worker_context_);
|
| + partition->platform_notification_context_->Initialize();
|
|
|
| - std::unique_ptr<StoragePartitionImpl> storage_partition(
|
| - new StoragePartitionImpl(
|
| - context, partition_path, quota_manager.get(), appcache_service.get(),
|
| - filesystem_context.get(), database_tracker.get(),
|
| - dom_storage_context.get(), indexed_db_context.get(),
|
| - cache_storage_context.get(), service_worker_context.get(),
|
| - special_storage_policy.get(), host_zoom_level_context.get(),
|
| - platform_notification_context.get(), background_sync_context.get(),
|
| - std::move(broadcast_channel_provider)));
|
| + partition->background_sync_context_ = new BackgroundSyncContext();
|
| + partition->background_sync_context_->Init(partition->service_worker_context_);
|
|
|
| - service_worker_context->set_storage_partition(storage_partition.get());
|
| + partition->broadcast_channel_provider_ = new BroadcastChannelProvider();
|
|
|
| - return storage_partition;
|
| + return partition;
|
| }
|
|
|
| base::FilePath StoragePartitionImpl::GetPath() {
|
| @@ -920,4 +889,11 @@ void StoragePartitionImpl::SetMediaURLRequestContext(
|
| media_url_request_context_ = media_url_request_context;
|
| }
|
|
|
| +void StoragePartitionImpl::GetTemporaryStorageConfiguration(
|
| + const base::FilePath& parition_path, bool is_incognito,
|
| + const storage::TemporaryStorageConfigurationCallback& callback) {
|
| + GetContentClient()->browser()->GetTemporaryStorageConfiguration(
|
| + browser_context_, parition_path, is_incognito, callback);
|
| +}
|
| +
|
| } // namespace content
|
|
|