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

Unified Diff: content/worker/worker_webapplicationcachehost_impl.h

Issue 8399007: Removing dedicated worker-related IPC codei (first round). (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: CR feedback Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/worker/worker_thread.cc ('k') | content/worker/worker_webapplicationcachehost_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/worker_webapplicationcachehost_impl.h
diff --git a/content/worker/worker_webapplicationcachehost_impl.h b/content/worker/worker_webapplicationcachehost_impl.h
index e3565834d68f7f3822b45720b76e9e414f2e532a..3aeb20d9e1d7894d0f4320c1d8ff9a728949da51 100644
--- a/content/worker/worker_webapplicationcachehost_impl.h
+++ b/content/worker/worker_webapplicationcachehost_impl.h
@@ -11,19 +11,17 @@
// Information used to construct and initialize an appcache host
// for a worker.
struct WorkerAppCacheInitInfo {
- bool is_shared_worker;
int parent_process_id;
- int parent_appcache_host_id; // Only valid for dedicated workers.
int64 main_resource_appcache_id; // Only valid for shared workers.
WorkerAppCacheInitInfo()
- : is_shared_worker(false), parent_process_id(0),
- parent_appcache_host_id(0), main_resource_appcache_id(0) {
+ : parent_process_id(0),
+ main_resource_appcache_id(0) {
}
WorkerAppCacheInitInfo(
- bool is_shared, int process_id, int host_id, int64 cache_id)
- : is_shared_worker(is_shared), parent_process_id(process_id),
- parent_appcache_host_id(host_id), main_resource_appcache_id(cache_id) {
+ int process_id, int64 cache_id)
+ : parent_process_id(process_id),
+ main_resource_appcache_id(cache_id) {
}
};
« no previous file with comments | « content/worker/worker_thread.cc ('k') | content/worker/worker_webapplicationcachehost_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698