| Index: base/synchronization/lock.h
|
| diff --git a/base/synchronization/lock.h b/base/synchronization/lock.h
|
| index 7e8ffe7b741bcdde1d39f69a9a123f906824a661..9c0d062a900bfc3bf4a33417b8a2c02cdf44236f 100644
|
| --- a/base/synchronization/lock.h
|
| +++ b/base/synchronization/lock.h
|
| @@ -80,11 +80,7 @@ class BASE_EXPORT Lock {
|
|
|
| // All private data is implicitly protected by lock_.
|
| // Be VERY careful to only access members under that lock.
|
| -
|
| - // Determines validity of owning_thread_id_. Needed as we don't have
|
| - // a null owning_thread_id_ value.
|
| - bool owned_by_thread_;
|
| - base::PlatformThreadId owning_thread_id_;
|
| + base::PlatformThreadRef owning_thread_ref_;
|
| #endif // NDEBUG
|
|
|
| // Platform specific underlying lock implementation.
|
|
|