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

Unified Diff: base/mac/objc_property_releaser.mm

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/mac/objc_property_releaser.mm
===================================================================
--- base/mac/objc_property_releaser.mm (revision 106774)
+++ base/mac/objc_property_releaser.mm (working copy)
@@ -98,8 +98,8 @@
}
void ObjCPropertyReleaser::ReleaseProperties() {
- CHECK(object_);
- CHECK(class_);
+ DCHECK(object_);
+ DCHECK(class_);
unsigned int property_count = 0;
objc_property_t* properties = class_copyPropertyList(class_, &property_count);
@@ -114,7 +114,7 @@
Ivar instance_variable =
object_getInstanceVariable(object_, instance_name.c_str(),
(void**)&instance_value);
- CHECK(instance_variable);
+ DCHECK(instance_variable);
[instance_value release];
}
}

Powered by Google App Engine
This is Rietveld 408576698