Chromium Code Reviews| Index: base/tracked_objects.cc |
| =================================================================== |
| --- base/tracked_objects.cc (revision 106774) |
| +++ base/tracked_objects.cc (working copy) |
| @@ -387,7 +387,7 @@ |
| } |
| base::AutoLock lock(list_lock_); |
| DCHECK_EQ(UNINITIALIZED, status_); |
| - CHECK(tls_index_.Initialize(NULL)); |
| + DCHECK(tls_index_.Initialize(NULL)); |
|
jar (doing other things)
2011/10/23 00:36:28
The call to Initialize(...) is for side effects (i
|
| status_ = ACTIVE; |
| return true; |
| #endif |
| @@ -431,7 +431,7 @@ |
| delete next_thread_data; // Includes all Death Records. |
| } |
| - CHECK(tls_index_.initialized()); |
| + DCHECK(tls_index_.initialized()); |
| tls_index_.Free(); |
| DCHECK(!tls_index_.initialized()); |
| status_ = UNINITIALIZED; |