| 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 #include "ppapi/nacl_irt/plugin_startup.h" | 5 #include "ppapi/nacl_irt/plugin_startup.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/file_descriptor_posix.h" | 8 #include "base/file_descriptor_posix.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/message_loop/message_loop.h" |
| 11 #include "base/single_thread_task_runner.h" | 12 #include "base/single_thread_task_runner.h" |
| 12 #include "base/synchronization/waitable_event.h" | 13 #include "base/synchronization/waitable_event.h" |
| 13 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
| 14 #include "ipc/ipc_channel_handle.h" | 15 #include "ipc/ipc_channel_handle.h" |
| 15 #include "ppapi/nacl_irt/manifest_service.h" | 16 #include "ppapi/nacl_irt/manifest_service.h" |
| 16 #include "ppapi/shared_impl/ppb_audio_shared.h" | 17 #include "ppapi/shared_impl/ppb_audio_shared.h" |
| 17 | 18 |
| 18 namespace ppapi { | 19 namespace ppapi { |
| 19 namespace { | 20 namespace { |
| 20 | 21 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 // The IOThread must be initialized in advance. | 123 // The IOThread must be initialized in advance. |
| 123 DCHECK(g_io_thread); | 124 DCHECK(g_io_thread); |
| 124 return g_io_thread; | 125 return g_io_thread; |
| 125 } | 126 } |
| 126 | 127 |
| 127 ManifestService* GetManifestService() { | 128 ManifestService* GetManifestService() { |
| 128 return g_manifest_service; | 129 return g_manifest_service; |
| 129 } | 130 } |
| 130 | 131 |
| 131 } // namespace ppapi | 132 } // namespace ppapi |
| OLD | NEW |