OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/worker_host/worker_storage_partition.h" | 5 #include "content/browser/worker_host/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 "net/url_request/url_request_context_getter.h" | 11 #include "net/url_request/url_request_context_getter.h" |
12 #include "webkit/browser/database/database_tracker.h" | 12 #include "webkit/browser/database/database_tracker.h" |
13 #include "webkit/browser/fileapi/file_system_context.h" | 13 #include "webkit/browser/fileapi/file_system_context.h" |
14 #include "webkit/quota/quota_manager.h" | 14 #include "webkit/browser/quota/quota_manager.h" |
15 | 15 |
16 namespace content { | 16 namespace content { |
17 | 17 |
18 WorkerStoragePartition::WorkerStoragePartition( | 18 WorkerStoragePartition::WorkerStoragePartition( |
19 net::URLRequestContextGetter* url_request_context, | 19 net::URLRequestContextGetter* url_request_context, |
20 net::URLRequestContextGetter* media_url_request_context, | 20 net::URLRequestContextGetter* media_url_request_context, |
21 ChromeAppCacheService* appcache_service, | 21 ChromeAppCacheService* appcache_service, |
22 quota::QuotaManager* quota_manager, | 22 quota::QuotaManager* quota_manager, |
23 fileapi::FileSystemContext* filesystem_context, | 23 fileapi::FileSystemContext* filesystem_context, |
24 webkit_database::DatabaseTracker* database_tracker, | 24 webkit_database::DatabaseTracker* database_tracker, |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 url_request_context_ = other.url_request_context_; | 61 url_request_context_ = other.url_request_context_; |
62 media_url_request_context_ = other.media_url_request_context_; | 62 media_url_request_context_ = other.media_url_request_context_; |
63 appcache_service_ = other.appcache_service_; | 63 appcache_service_ = other.appcache_service_; |
64 quota_manager_ = other.quota_manager_; | 64 quota_manager_ = other.quota_manager_; |
65 filesystem_context_ = other.filesystem_context_; | 65 filesystem_context_ = other.filesystem_context_; |
66 database_tracker_ = other.database_tracker_; | 66 database_tracker_ = other.database_tracker_; |
67 indexed_db_context_ = other.indexed_db_context_; | 67 indexed_db_context_ = other.indexed_db_context_; |
68 } | 68 } |
69 | 69 |
70 } // namespace content | 70 } // namespace content |
OLD | NEW |