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

Unified Diff: chrome/installer/util/shell_util.cc

Issue 195973002: Change DCHECK_IS_ON() to DCHECK_IS_ON (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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: chrome/installer/util/shell_util.cc
diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc
index 10a968ba22091af318515d1f0b65b1d73a5cca37..cffb61f8d7d749a3f35a58658c4c157ee013c5e8 100644
--- a/chrome/installer/util/shell_util.cc
+++ b/chrome/installer/util/shell_util.cc
@@ -1148,7 +1148,7 @@ ShellUtil::DefaultState ProbeProtocolHandlers(
const wchar_t* const* protocols,
size_t num_protocols) {
DCHECK(!num_protocols || protocols);
- if (DCHECK_IS_ON()) {
+ if (DCHECK_IS_ON) {
for (size_t i = 0; i < num_protocols; ++i)
DCHECK(protocols[i] && *protocols[i]);
}

Powered by Google App Engine
This is Rietveld 408576698