| Index: base/metrics/stats_table.h
|
| diff --git a/base/metrics/stats_table.h b/base/metrics/stats_table.h
|
| index 32b22ebf6db89e6a5512d558124aac18e66ae303..aaf80626a303f273c3c8973bacf74ab041e52e39 100644
|
| --- a/base/metrics/stats_table.h
|
| +++ b/base/metrics/stats_table.h
|
| @@ -25,7 +25,7 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "base/hash_tables.h"
|
| -#include "base/lock.h"
|
| +#include "base/synchronization/lock.h"
|
| #include "base/threading/thread_local_storage.h"
|
|
|
| namespace base {
|
| @@ -175,7 +175,7 @@ class StatsTable {
|
| Private* impl_;
|
|
|
| // The counters_lock_ protects the counters_ hash table.
|
| - Lock counters_lock_;
|
| + base::Lock counters_lock_;
|
|
|
| // The counters_ hash map is an in-memory hash of the counters.
|
| // It is used for quick lookup of counters, but is cannot be used
|
|
|