| Index: base/logging.h
|
| diff --git a/base/logging.h b/base/logging.h
|
| index 3797bbd88fb03a530fe3e60ae8ffa502fc38632d..96ef7c3d8fb333efabe1cb931dd631623ae07ae4 100644
|
| --- a/base/logging.h
|
| +++ b/base/logging.h
|
| @@ -252,12 +252,10 @@ BASE_EXPORT bool ShouldCreateLogMessage(int severity);
|
| // Gets the VLOG default verbosity level.
|
| BASE_EXPORT int GetVlogVerbosity();
|
|
|
| -// Gets the current vlog level for the given file (usually taken from
|
| -// __FILE__).
|
| -
|
| // Note that |N| is the size *with* the null terminator.
|
| BASE_EXPORT int GetVlogLevelHelper(const char* file_start, size_t N);
|
|
|
| +// Gets the current vlog level for the given file (usually taken from __FILE__).
|
| template <size_t N>
|
| int GetVlogLevel(const char (&file)[N]) {
|
| return GetVlogLevelHelper(file, N);
|
|
|