| OLD | NEW |
| 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 #ifndef CONTENT_CHILD_CHILD_THREAD_IMPL_H_ | 5 #ifndef CONTENT_CHILD_CHILD_THREAD_IMPL_H_ |
| 6 #define CONTENT_CHILD_CHILD_THREAD_IMPL_H_ | 6 #define CONTENT_CHILD_CHILD_THREAD_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 namespace service_manager { | 41 namespace service_manager { |
| 42 class Connection; | 42 class Connection; |
| 43 } // namespace service_manager | 43 } // namespace service_manager |
| 44 | 44 |
| 45 namespace mojo { | 45 namespace mojo { |
| 46 namespace edk { | 46 namespace edk { |
| 47 class ScopedIPCSupport; | 47 class ScopedIPCSupport; |
| 48 } // namespace edk | 48 } // namespace edk |
| 49 } // namespace mojo | 49 } // namespace mojo |
| 50 | 50 |
| 51 namespace blink { | |
| 52 class WebFrame; | |
| 53 } // namespace blink | |
| 54 | |
| 55 namespace discardable_memory { | 51 namespace discardable_memory { |
| 56 class ClientDiscardableSharedMemoryManager; | 52 class ClientDiscardableSharedMemoryManager; |
| 57 } // namespace discardable_memory | 53 } // namespace discardable_memory |
| 58 | 54 |
| 59 namespace content { | 55 namespace content { |
| 60 class ChildMessageFilter; | |
| 61 class ChildHistogramMessageFilter; | 56 class ChildHistogramMessageFilter; |
| 62 class ChildResourceMessageFilter; | 57 class ChildResourceMessageFilter; |
| 63 class ChildSharedBitmapManager; | 58 class ChildSharedBitmapManager; |
| 64 class FileSystemDispatcher; | 59 class FileSystemDispatcher; |
| 65 class InProcessChildThreadParams; | 60 class InProcessChildThreadParams; |
| 66 class NotificationDispatcher; | 61 class NotificationDispatcher; |
| 67 class PushDispatcher; | 62 class PushDispatcher; |
| 68 class ServiceWorkerMessageFilter; | 63 class ServiceWorkerMessageFilter; |
| 69 class QuotaDispatcher; | 64 class QuotaDispatcher; |
| 70 class QuotaMessageFilter; | 65 class QuotaMessageFilter; |
| 71 class ResourceDispatcher; | 66 class ResourceDispatcher; |
| 72 class ThreadSafeSender; | 67 class ThreadSafeSender; |
| 73 struct RequestInfo; | |
| 74 | 68 |
| 75 // The main thread of a child process derives from this class. | 69 // The main thread of a child process derives from this class. |
| 76 class CONTENT_EXPORT ChildThreadImpl | 70 class CONTENT_EXPORT ChildThreadImpl |
| 77 : public IPC::Listener, | 71 : public IPC::Listener, |
| 78 virtual public ChildThread, | 72 virtual public ChildThread, |
| 79 NON_EXPORTED_BASE(public mojom::RouteProvider), | 73 NON_EXPORTED_BASE(public mojom::RouteProvider), |
| 80 NON_EXPORTED_BASE(public mojom::AssociatedInterfaceProvider) { | 74 NON_EXPORTED_BASE(public mojom::AssociatedInterfaceProvider) { |
| 81 public: | 75 public: |
| 82 struct CONTENT_EXPORT Options; | 76 struct CONTENT_EXPORT Options; |
| 83 | 77 |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 | 377 |
| 384 private: | 378 private: |
| 385 struct Options options_; | 379 struct Options options_; |
| 386 | 380 |
| 387 DISALLOW_COPY_AND_ASSIGN(Builder); | 381 DISALLOW_COPY_AND_ASSIGN(Builder); |
| 388 }; | 382 }; |
| 389 | 383 |
| 390 } // namespace content | 384 } // namespace content |
| 391 | 385 |
| 392 #endif // CONTENT_CHILD_CHILD_THREAD_IMPL_H_ | 386 #endif // CONTENT_CHILD_CHILD_THREAD_IMPL_H_ |
| OLD | NEW |