diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-01 20:50:55 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-01 20:50:55 +0000 |
commit | e11de7254efb71fbe5b26b113a8e2e5bdd8da15f (patch) | |
tree | be8df3ca21aeb1c777d1efbfa6266174c0eb870d /base/logging.h | |
parent | 86b531b3f6d8b5353a159456dba3bc03ebc68060 (diff) | |
download | chromium_src-e11de7254efb71fbe5b26b113a8e2e5bdd8da15f.zip chromium_src-e11de7254efb71fbe5b26b113a8e2e5bdd8da15f.tar.gz chromium_src-e11de7254efb71fbe5b26b113a8e2e5bdd8da15f.tar.bz2 |
Wrote a custom pattern matcher for vmodule.
The custom pattern matcher matches any slash (forward or backward) to any
slash. It also does not do escaping like MatchPattern(). Finally, '?'
matches exactly one character, which matches google-glog behavior
(MatchPattern() matches '?' to 0 or 1 character).
BUG=61123
TEST=New unittests
Review URL: http://codereview.chromium.org/4205005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64661 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/logging.h')
-rw-r--r-- | base/logging.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/logging.h b/base/logging.h index 4b3caca..68a1c74 100644 --- a/base/logging.h +++ b/base/logging.h @@ -87,9 +87,9 @@ // b. VLOG(1) and lower messages to be printed from icon_loader.{h,cc} // c. VLOG(3) and lower messages to be printed from files prefixed with // "browser" -// c. VLOG(4) and lower messages to be printed from files under a +// d. VLOG(4) and lower messages to be printed from files under a // "chromeos" directory. -// d. VLOG(0) and lower messages to be printed from elsewhere +// e. VLOG(0) and lower messages to be printed from elsewhere // // The wildcarding functionality shown by (c) supports both '*' (match // 0 or more characters) and '?' (match any single character) |