summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/WebCoreSupport/WebCookieJar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/android/WebCoreSupport/WebCookieJar.cpp')
-rw-r--r--Source/WebKit/android/WebCoreSupport/WebCookieJar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebKit/android/WebCoreSupport/WebCookieJar.cpp b/Source/WebKit/android/WebCoreSupport/WebCookieJar.cpp
index 429e990..dfb249d 100644
--- a/Source/WebKit/android/WebCoreSupport/WebCookieJar.cpp
+++ b/Source/WebKit/android/WebCoreSupport/WebCookieJar.cpp
@@ -207,7 +207,7 @@ public:
// Block until the given number of callbacks has been made.
void Wait(int numCallbacks) {
- AutoLock al(m_lock);
+ base::AutoLock al(m_lock);
int lastCount = m_count;
while (m_count < numCallbacks) {
// TODO(husky): Maybe use TimedWait() here? But it's not obvious what
@@ -223,7 +223,7 @@ private:
friend class base::RefCounted<FlushSemaphore>;
void Callback() {
- AutoLock al(m_lock);
+ base::AutoLock al(m_lock);
m_count++;
m_condition.Broadcast();
}