summaryrefslogtreecommitdiffstats
path: root/chrome_frame/task_marshaller.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/task_marshaller.h')
-rw-r--r--chrome_frame/task_marshaller.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome_frame/task_marshaller.h b/chrome_frame/task_marshaller.h
index 9fd3701..75d945e 100644
--- a/chrome_frame/task_marshaller.h
+++ b/chrome_frame/task_marshaller.h
@@ -9,7 +9,8 @@
#include <windows.h>
#include <deque>
#include <queue>
-#include "base/lock.h"
+
+#include "base/synchronization/lock.h"
#include "base/threading/non_thread_safe.h"
#include "base/time.h"
@@ -58,7 +59,7 @@ class TaskMarshallerThroughMessageQueue : public base::NonThreadSafe {
std::priority_queue<DelayedTask> delayed_tasks_;
std::queue<Task*> pending_tasks_;
- Lock lock_;
+ base::Lock lock_;
HWND wnd_;
UINT msg_;
int invoke_task_;