Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1202)

Unified Diff: base/tracked_objects.cc

Issue 8368009: Replace most LOG statements with DLOG statements in base. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698