summaryrefslogtreecommitdiffstats
path: root/chrome/common/worker_thread_ticker.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/worker_thread_ticker.h')
-rw-r--r--chrome/common/worker_thread_ticker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/worker_thread_ticker.h b/chrome/common/worker_thread_ticker.h
index d18feec..07f85eb 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_;