| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |