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

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

Issue 411283002: Remove disable-embedded-shared-worker flag and shared worker process related codes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 5 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 (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/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 "webkit/browser/database/database_tracker.h"
14 #include "webkit/browser/fileapi/file_system_context.h" 14 #include "webkit/browser/fileapi/file_system_context.h"
15 #include "webkit/browser/quota/quota_manager.h" 15 #include "webkit/browser/quota/quota_manager.h"
(...skipping 78 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/worker_host/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698