| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2014 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_BASE_ASYNCINVOKER_INL_H_ | 11 #ifndef WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ |
| 12 #define WEBRTC_BASE_ASYNCINVOKER_INL_H_ | 12 #define WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ |
| 13 | 13 |
| 14 #include "webrtc/base/atomicops.h" | 14 #include "webrtc/base/atomicops.h" |
| 15 #include "webrtc/base/bind.h" | 15 #include "webrtc/base/bind.h" |
| 16 #include "webrtc/base/criticalsection.h" | 16 #include "webrtc/base/criticalsection.h" |
| 17 #include "webrtc/base/messagehandler.h" | 17 #include "webrtc/base/messagehandler.h" |
| 18 #include "webrtc/base/sigslot.h" | 18 #include "webrtc/base/sigslot.h" |
| 19 #include "webrtc/base/thread.h" | 19 #include "webrtc/base/thread.h" |
| 20 #include "webrtc/base/thread_annotations.h" | 20 #include "webrtc/base/thread_annotations.h" |
| 21 | 21 |
| 22 namespace rtc { | 22 namespace rtc { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 46 : AsyncClosure(invoker), functor_(functor) {} | 46 : AsyncClosure(invoker), functor_(functor) {} |
| 47 virtual void Execute() { | 47 virtual void Execute() { |
| 48 functor_(); | 48 functor_(); |
| 49 } | 49 } |
| 50 private: | 50 private: |
| 51 FunctorT functor_; | 51 FunctorT functor_; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace rtc | 54 } // namespace rtc |
| 55 | 55 |
| 56 #endif // WEBRTC_BASE_ASYNCINVOKER_INL_H_ | 56 #endif // WEBRTC_RTC_BASE_ASYNCINVOKER_INL_H_ |
| OLD | NEW |