summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorgirard@chromium.org <girard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-21 20:57:30 +0000
committergirard@chromium.org <girard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-21 20:57:30 +0000
commitd12702b6b1c54b5f6f7ed8db352ade21dcc34050 (patch)
tree4253cd18ae7f7d50d22353d199ef3ec0cc802b2e /base
parentec78a08408a6b2990b5bafb1aec8c503fc0a1be0 (diff)
downloadchromium_src-d12702b6b1c54b5f6f7ed8db352ade21dcc34050.zip
chromium_src-d12702b6b1c54b5f6f7ed8db352ade21dcc34050.tar.gz
chromium_src-d12702b6b1c54b5f6f7ed8db352ade21dcc34050.tar.bz2
Documentation fix - Delete meaningless paragraph.
BUG=none Review URL: https://codereview.chromium.org/135903010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@246106 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/logging.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/base/logging.h b/base/logging.h
index 71f391f..0140780 100644
--- a/base/logging.h
+++ b/base/logging.h
@@ -52,10 +52,6 @@
//
// LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
//
-// The above will cause log messages to be output on the 1st, 11th, 21st, ...
-// times it is executed. Note that the special COUNTER value is used to
-// identify which repetition is happening.
-//
// The CHECK(condition) macro is active in both debug and release builds and
// effectively performs a LOG(FATAL) which terminates the process and
// generates a crashdump unless a debugger is attached.