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

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

Issue 559063002: Remove webkit/browser/, point everything to storage/browser/ instead (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean up DEPS per feedback Created 6 years, 3 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
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 storage::QuotaManager* quota_manager, 23 storage::QuotaManager* quota_manager,
24 storage::FileSystemContext* filesystem_context, 24 storage::FileSystemContext* filesystem_context,
25 storage::DatabaseTracker* database_tracker, 25 storage::DatabaseTracker* database_tracker,
(...skipping 68 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/service_worker/service_worker_url_request_job_unittest.cc ('k') | content/browser/storage_partition_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698