Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: content/browser/shared_worker/worker_storage_partition.cc

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/shared_worker/worker_storage_partition.h" 5 #include "content/browser/shared_worker/worker_storage_partition.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "content/browser/appcache/chrome_appcache_service.h" 9 #include "content/browser/appcache/chrome_appcache_service.h"
10 #include "content/browser/indexed_db/indexed_db_context_impl.h" 10 #include "content/browser/indexed_db/indexed_db_context_impl.h"
11 #include "content/browser/service_worker/service_worker_context_wrapper.h" 11 #include "content/browser/service_worker/service_worker_context_wrapper.h"
12 #include "net/url_request/url_request_context_getter.h" 12 #include "net/url_request/url_request_context_getter.h"
13 #include "webkit/browser/database/database_tracker.h" 13 #include "storage/browser/database/database_tracker.h"
14 #include "webkit/browser/fileapi/file_system_context.h" 14 #include "storage/browser/fileapi/file_system_context.h"
15 #include "webkit/browser/quota/quota_manager.h" 15 #include "storage/browser/quota/quota_manager.h"
16 16
17 namespace content { 17 namespace content {
18 18
19 WorkerStoragePartition::WorkerStoragePartition( 19 WorkerStoragePartition::WorkerStoragePartition(
20 net::URLRequestContextGetter* url_request_context, 20 net::URLRequestContextGetter* url_request_context,
21 net::URLRequestContextGetter* media_url_request_context, 21 net::URLRequestContextGetter* media_url_request_context,
22 ChromeAppCacheService* appcache_service, 22 ChromeAppCacheService* appcache_service,
23 quota::QuotaManager* quota_manager, 23 quota::QuotaManager* quota_manager,
24 fileapi::FileSystemContext* filesystem_context, 24 storage::FileSystemContext* filesystem_context,
25 webkit_database::DatabaseTracker* database_tracker, 25 webkit_database::DatabaseTracker* database_tracker,
26 IndexedDBContextImpl* indexed_db_context, 26 IndexedDBContextImpl* indexed_db_context,
27 ServiceWorkerContextWrapper* service_worker_context) 27 ServiceWorkerContextWrapper* service_worker_context)
28 : url_request_context_(url_request_context), 28 : url_request_context_(url_request_context),
29 media_url_request_context_(media_url_request_context), 29 media_url_request_context_(media_url_request_context),
30 appcache_service_(appcache_service), 30 appcache_service_(appcache_service),
31 quota_manager_(quota_manager), 31 quota_manager_(quota_manager),
32 filesystem_context_(filesystem_context), 32 filesystem_context_(filesystem_context),
33 database_tracker_(database_tracker), 33 database_tracker_(database_tracker),
34 indexed_db_context_(indexed_db_context), 34 indexed_db_context_(indexed_db_context),
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 media_url_request_context_ == other.media_url_request_context_ && 94 media_url_request_context_ == other.media_url_request_context_ &&
95 appcache_service_ == other.appcache_service_ && 95 appcache_service_ == other.appcache_service_ &&
96 quota_manager_ == other.quota_manager_ && 96 quota_manager_ == other.quota_manager_ &&
97 filesystem_context_ == other.filesystem_context_ && 97 filesystem_context_ == other.filesystem_context_ &&
98 database_tracker_ == other.database_tracker_ && 98 database_tracker_ == other.database_tracker_ &&
99 indexed_db_context_ == other.indexed_db_context_ && 99 indexed_db_context_ == other.indexed_db_context_ &&
100 service_worker_context_ == other.service_worker_context_; 100 service_worker_context_ == other.service_worker_context_;
101 } 101 }
102 102
103 } // namespace content 103 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/shared_worker/worker_storage_partition.h ('k') | content/browser/storage_partition_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698