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

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
« no previous file with comments | « base/mac/mac_util.mm ('k') | base/message_loop.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/mac/objc_property_releaser.mm
===================================================================
--- base/mac/objc_property_releaser.mm (revision 106858)
+++ 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];
}
}
« no previous file with comments | « base/mac/mac_util.mm ('k') | base/message_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698