| Index: src/log-utils.h
|
| diff --git a/src/log-utils.h b/src/log-utils.h
|
| index c5e0a0ca5f6d37364494d40485e93879a15a9fed..451ffaa24b4a701c732735ea9d5f5745b6de5722 100644
|
| --- a/src/log-utils.h
|
| +++ b/src/log-utils.h
|
| @@ -85,7 +85,7 @@ class Log {
|
|
|
| private:
|
| Log* log_;
|
| - LockGuard<Mutex> lock_guard_;
|
| + base::LockGuard<base::Mutex> lock_guard_;
|
| int pos_;
|
| };
|
|
|
| @@ -120,7 +120,7 @@ class Log {
|
|
|
| // mutex_ is a Mutex used for enforcing exclusive
|
| // access to the formatting buffer and the log file or log memory buffer.
|
| - Mutex mutex_;
|
| + base::Mutex mutex_;
|
|
|
| // Buffer used for formatting log messages. This is a singleton buffer and
|
| // mutex_ should be acquired before using it.
|
|
|