| Index: webrtc/base/thread.h
|
| diff --git a/webrtc/base/thread.h b/webrtc/base/thread.h
|
| index 5751df385cc5d1acd43f8b153d3af0720ceb7a6f..c83ea4851348bcc7bfa786abe5348440e8dc1c90 100644
|
| --- a/webrtc/base/thread.h
|
| +++ b/webrtc/base/thread.h
|
| @@ -91,6 +91,12 @@ class Runnable {
|
| RTC_DISALLOW_COPY_AND_ASSIGN(Runnable);
|
| };
|
|
|
| +struct ThreadInit {
|
| + Thread* thread;
|
| + Runnable* runnable;
|
| +};
|
| +
|
| +
|
| // WARNING! SUBCLASSES MUST CALL Stop() IN THEIR DESTRUCTORS! See ~Thread().
|
|
|
| class LOCKABLE Thread : public MessageQueue {
|
|
|