diff options
author | Kristian Monsen <kristianm@google.com> | 2011-05-25 12:09:51 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-05-25 12:09:51 -0700 |
commit | 1e0959f50e280fd2cc683ff02588f940cc8c8bb0 (patch) | |
tree | dacf2bb19c2fa650518d91fcdf610953a4c548d3 /Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h | |
parent | a65177a6c88816d4319790c570f783ec9957fb5a (diff) | |
parent | f5c16878840c58e6e0b1622e0cd950fe27ae7832 (diff) | |
download | external_webkit-1e0959f50e280fd2cc683ff02588f940cc8c8bb0.zip external_webkit-1e0959f50e280fd2cc683ff02588f940cc8c8bb0.tar.gz external_webkit-1e0959f50e280fd2cc683ff02588f940cc8c8bb0.tar.bz2 |
Merge "Merge chromium at 10.0.634.0: Compile fixes"
Diffstat (limited to 'Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h')
-rw-r--r-- | Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h b/Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h index dc101db..224fa65 100644 --- a/Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h +++ b/Source/WebKit/android/WebCoreSupport/WebUrlLoaderClient.h @@ -36,10 +36,10 @@ #include <string> #include <vector> -class Lock; -class ConditionVariable; namespace base { +class ConditionVariable; +class Lock; class Thread; } @@ -118,8 +118,8 @@ private: // Mutex and condition variable used for synchronous requests. // Note that these are static. This works because there's only one main thread. - static Lock* syncLock(); - static ConditionVariable* syncCondition(); + static base::Lock* syncLock(); + static base::ConditionVariable* syncCondition(); // Queue of callbacks to be executed by the main thread. Must only be accessed inside mutex. std::deque<Task*> m_queue; |