| Index: chrome/common/worker_thread_ticker.h
|
| diff --git a/chrome/common/worker_thread_ticker.h b/chrome/common/worker_thread_ticker.h
|
| index d18feec2b80db3b5959263cd5bb17acd1891515c..07f85ebaf33a7aa10a6719e6712a496b4b08472d 100644
|
| --- a/chrome/common/worker_thread_ticker.h
|
| +++ b/chrome/common/worker_thread_ticker.h
|
| @@ -8,7 +8,7 @@
|
|
|
| #include <vector>
|
|
|
| -#include "base/lock.h"
|
| +#include "base/synchronization/lock.h"
|
| #include "base/threading/thread.h"
|
|
|
| // This class provides the following functionality:
|
| @@ -74,7 +74,7 @@ class WorkerThreadTicker {
|
| typedef std::vector<Callback*> TickHandlerListType;
|
|
|
| // Lock to protect is_running_ and tick_handler_list_
|
| - Lock lock_;
|
| + base::Lock lock_;
|
|
|
| base::Thread timer_thread_;
|
| bool is_running_;
|
|
|