Chromium Code Reviews| 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_H_ | 5 #ifndef CONTENT_CHILD_CHILD_THREAD_H_ |
| 6 #define CONTENT_CHILD_CHILD_THREAD_H_ | 6 #define CONTENT_CHILD_CHILD_THREAD_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/shared_memory.h" | 12 #include "base/memory/shared_memory.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/power_monitor/power_monitor.h" | 14 #include "base/power_monitor/power_monitor.h" |
| 15 #include "base/tracked_objects.h" | 15 #include "base/tracked_objects.h" |
| 16 #include "content/child/mojo/mojo_application.h" | 16 #include "content/child/mojo/mojo_application.h" |
| 17 #include "content/common/content_export.h" | 17 #include "content/common/content_export.h" |
| 18 #include "content/common/message_router.h" | 18 #include "content/common/message_router.h" |
| 19 #include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED. | 19 #include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED. |
| 20 | 20 |
| 21 namespace base { | 21 namespace base { |
| 22 class MessageLoop; | 22 class MessageLoop; |
| 23 | 23 |
| 24 namespace trace_event { | |
| 25 class TraceMemoryController; | |
| 26 } // namespace trace_event | |
| 24 namespace debug { | 27 namespace debug { |
|
Primiano Tucci (use gerrit)
2015/01/27 14:34:11
ditto (remove trailing comment)
| |
| 25 class TraceMemoryController; | 28 using ::base::trace_event::TraceMemoryController; |
| 26 } // namespace debug | 29 } // namespace debug |
|
Primiano Tucci (use gerrit)
2015/01/27 14:34:11
nit: blankline
| |
| 27 } // namespace base | 30 } // namespace base |
| 28 | 31 |
| 29 namespace IPC { | 32 namespace IPC { |
| 30 class MessageFilter; | 33 class MessageFilter; |
| 31 class SyncChannel; | 34 class SyncChannel; |
| 32 class SyncMessageFilter; | 35 class SyncMessageFilter; |
| 33 } // namespace IPC | 36 } // namespace IPC |
| 34 | 37 |
| 35 namespace blink { | 38 namespace blink { |
| 36 class WebFrame; | 39 class WebFrame; |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 293 bool in_browser_process_; | 296 bool in_browser_process_; |
| 294 | 297 |
| 295 base::WeakPtrFactory<ChildThread> channel_connected_factory_; | 298 base::WeakPtrFactory<ChildThread> channel_connected_factory_; |
| 296 | 299 |
| 297 DISALLOW_COPY_AND_ASSIGN(ChildThread); | 300 DISALLOW_COPY_AND_ASSIGN(ChildThread); |
| 298 }; | 301 }; |
| 299 | 302 |
| 300 } // namespace content | 303 } // namespace content |
| 301 | 304 |
| 302 #endif // CONTENT_CHILD_CHILD_THREAD_H_ | 305 #endif // CONTENT_CHILD_CHILD_THREAD_H_ |
| OLD | NEW |