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

Unified Diff: third_party/cacheinvalidation/overrides/google/cacheinvalidation/mutex.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 | « skia/ext/SkThread_chrome.cc ('k') | webkit/glue/media/buffered_data_source.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/cacheinvalidation/overrides/google/cacheinvalidation/mutex.h
diff --git a/third_party/cacheinvalidation/overrides/google/cacheinvalidation/mutex.h b/third_party/cacheinvalidation/overrides/google/cacheinvalidation/mutex.h
index b99dcee0b3d634bf376178e8d52a2427cca8e2bf..4d64f0fa2873c0673d35e435a2ac60a2570bd814 100644
--- a/third_party/cacheinvalidation/overrides/google/cacheinvalidation/mutex.h
+++ b/third_party/cacheinvalidation/overrides/google/cacheinvalidation/mutex.h
@@ -5,19 +5,19 @@
#ifndef GOOGLE_CACHEINVALIDATION_MUTEX_H_
#define GOOGLE_CACHEINVALIDATION_MUTEX_H_
-#include "base/lock.h"
#include "base/logging.h"
+#include "base/synchronization/lock.h"
namespace invalidation {
-typedef ::Lock Mutex;
+typedef base::Lock Mutex;
class MutexLock {
public:
explicit MutexLock(Mutex* m) : auto_lock_(*m) {}
private:
- AutoLock auto_lock_;
+ base::AutoLock auto_lock_;
DISALLOW_COPY_AND_ASSIGN(MutexLock);
};
« no previous file with comments | « skia/ext/SkThread_chrome.cc ('k') | webkit/glue/media/buffered_data_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698