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

Side by Side Diff: content/browser/shared_worker/shared_worker_message_filter.h

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 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 #ifndef CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_MESSAGE_FILTER_H_ 5 #ifndef CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_MESSAGE_FILTER_H_
6 #define CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_MESSAGE_FILTER_H_ 6 #define CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_MESSAGE_FILTER_H_
7 7
8 #include "content/browser/worker_host/worker_storage_partition.h" 8 #include "content/browser/shared_worker/worker_storage_partition.h"
9 #include "content/common/content_export.h" 9 #include "content/common/content_export.h"
10 #include "content/public/browser/browser_message_filter.h" 10 #include "content/public/browser/browser_message_filter.h"
11 11
12 class GURL; 12 class GURL;
13 struct ViewHostMsg_CreateWorker_Params; 13 struct ViewHostMsg_CreateWorker_Params;
14 14
15 namespace content { 15 namespace content {
16 class MessagePortMessageFilter; 16 class MessagePortMessageFilter;
17 class ResourceContext; 17 class ResourceContext;
18 18
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 ResourceContext* const resource_context_; 69 ResourceContext* const resource_context_;
70 const WorkerStoragePartition partition_; 70 const WorkerStoragePartition partition_;
71 MessagePortMessageFilter* const message_port_message_filter_; 71 MessagePortMessageFilter* const message_port_message_filter_;
72 72
73 DISALLOW_IMPLICIT_CONSTRUCTORS(SharedWorkerMessageFilter); 73 DISALLOW_IMPLICIT_CONSTRUCTORS(SharedWorkerMessageFilter);
74 }; 74 };
75 75
76 } // namespace content 76 } // namespace content
77 77
78 #endif // CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_MESSAGE_FILTER_H_ 78 #endif // CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_MESSAGE_FILTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698