| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #ifndef WEBRTC_MODULES_UTILITY_INCLUDE_PROCESS_THREAD_H_ | 11 #ifndef WEBRTC_MODULES_UTILITY_INCLUDE_PROCESS_THREAD_H_ |
| 12 #define WEBRTC_MODULES_UTILITY_INCLUDE_PROCESS_THREAD_H_ | 12 #define WEBRTC_MODULES_UTILITY_INCLUDE_PROCESS_THREAD_H_ |
| 13 | 13 |
| 14 #include <memory> | 14 #include <memory> |
| 15 | 15 |
| 16 #include "webrtc/typedefs.h" | 16 #include "webrtc/typedefs.h" |
| 17 | 17 |
| 18 #if defined(WEBRTC_WIN) | 18 #if defined(WEBRTC_WIN) |
| 19 // Due to a bug in the std::unique_ptr implementation that ships with MSVS, | 19 // Due to a bug in the std::unique_ptr implementation that ships with MSVS, |
| 20 // we need the full definition of QueuedTask, on Windows. | 20 // we need the full definition of QueuedTask, on Windows. |
| 21 #include "webrtc/rtc_base/task_queue.h" | 21 #include "webrtc/base/task_queue.h" |
| 22 #else | 22 #else |
| 23 namespace rtc { | 23 namespace rtc { |
| 24 class QueuedTask; | 24 class QueuedTask; |
| 25 } | 25 } |
| 26 #endif | 26 #endif |
| 27 | 27 |
| 28 namespace rtc { | 28 namespace rtc { |
| 29 class Location; | 29 class Location; |
| 30 } | 30 } |
| 31 | 31 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 virtual void RegisterModule(Module* module, const rtc::Location& from) = 0; | 68 virtual void RegisterModule(Module* module, const rtc::Location& from) = 0; |
| 69 | 69 |
| 70 // Removes a previously registered module. | 70 // Removes a previously registered module. |
| 71 // Can be called from any thread. | 71 // Can be called from any thread. |
| 72 virtual void DeRegisterModule(Module* module) = 0; | 72 virtual void DeRegisterModule(Module* module) = 0; |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace webrtc | 75 } // namespace webrtc |
| 76 | 76 |
| 77 #endif // WEBRTC_MODULES_UTILITY_INCLUDE_PROCESS_THREAD_H_ | 77 #endif // WEBRTC_MODULES_UTILITY_INCLUDE_PROCESS_THREAD_H_ |
| OLD | NEW |