Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6847)

Unified Diff: chrome/common/worker_thread_ticker.h

Issue 6142009: Upating the app, ceee, chrome, ipc, media, and net directories to use the correct lock.h file. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Unified patch updating all references to the new base/synchronization/lock.h Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/webmessageportchannel_impl.cc ('k') | chrome/common/worker_thread_ticker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « chrome/common/webmessageportchannel_impl.cc ('k') | chrome/common/worker_thread_ticker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698