| Index: webrtc/system_wrappers/include/data_log_impl.h
|
| diff --git a/webrtc/system_wrappers/include/data_log_impl.h b/webrtc/system_wrappers/include/data_log_impl.h
|
| index 723cca31fb8104d83f6b62fbdc67e3074554054c..35519609b996627054bafc755e8734aa0c5e47f1 100644
|
| --- a/webrtc/system_wrappers/include/data_log_impl.h
|
| +++ b/webrtc/system_wrappers/include/data_log_impl.h
|
| @@ -146,7 +146,9 @@ class DataLogImpl {
|
| int counter_;
|
| TableMap tables_;
|
| EventWrapper* flush_event_;
|
| - rtc::scoped_ptr<PlatformThread> file_writer_thread_;
|
| + // This is a scoped_ptr so that we don't have to create threads in the no-op
|
| + // impl.
|
| + rtc::scoped_ptr<rtc::PlatformThread> file_writer_thread_;
|
| RWLockWrapper* tables_lock_;
|
| };
|
|
|
|
|