summaryrefslogtreecommitdiffstats
path: root/WebKit/android
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-11-25 05:49:08 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-11-25 05:49:08 -0800
commitc3d01e3597b510384b488d7d222e80a3876286b9 (patch)
tree4dedd5227be499963e1ddb6dcaed40948db228de /WebKit/android
parent8d4e6f47fe31b9b3990faefd42269e85cab05fc9 (diff)
parent9ca5793315e248418a353cc1443f3803ae0adfe6 (diff)
downloadexternal_webkit-c3d01e3597b510384b488d7d222e80a3876286b9.zip
external_webkit-c3d01e3597b510384b488d7d222e80a3876286b9.tar.gz
external_webkit-c3d01e3597b510384b488d7d222e80a3876286b9.tar.bz2
Merge change I6d6312e9 into eclair-mr2
* changes: Fixes WTF include in WebCore/page/Geolocation.cpp to fix Mac build.
Diffstat (limited to 'WebKit/android')
-rw-r--r--WebKit/android/WebCoreSupport/ChromeClientAndroid.h2
-rwxr-xr-xWebKit/android/WebCoreSupport/GeolocationPermissions.h8
-rw-r--r--WebKit/android/benchmark/Intercept.cpp2
-rw-r--r--WebKit/android/benchmark/Intercept.h2
4 files changed, 7 insertions, 7 deletions
diff --git a/WebKit/android/WebCoreSupport/ChromeClientAndroid.h b/WebKit/android/WebCoreSupport/ChromeClientAndroid.h
index 5ed785a..3129d1f 100644
--- a/WebKit/android/WebCoreSupport/ChromeClientAndroid.h
+++ b/WebKit/android/WebCoreSupport/ChromeClientAndroid.h
@@ -29,8 +29,8 @@
#include "ChromeClient.h"
#include "GeolocationPermissions.h"
-#include "Threading.h"
#include "Timer.h"
+#include <wtf/Threading.h>
namespace WebCore {
class Geolocation;
diff --git a/WebKit/android/WebCoreSupport/GeolocationPermissions.h b/WebKit/android/WebCoreSupport/GeolocationPermissions.h
index 59e8ce1..33434b9 100755
--- a/WebKit/android/WebCoreSupport/GeolocationPermissions.h
+++ b/WebKit/android/WebCoreSupport/GeolocationPermissions.h
@@ -30,11 +30,11 @@
// We must include this before before HashMap.h, as it provides specalizations
// for String hash types instantiated there.
#include "StringHash.h"
-#include "HashMap.h"
-#include "HashSet.h"
#include "Timer.h"
-#include "Vector.h"
-#include "wtf/RefCounted.h"
+#include <wtf/HashMap.h>
+#include <wtf/HashSet.h>
+#include <wtf/RefCounted.h>
+#include <wtf/Vector.h>
namespace WebCore {
class Frame;
diff --git a/WebKit/android/benchmark/Intercept.cpp b/WebKit/android/benchmark/Intercept.cpp
index c31fe5e..90cf1e1 100644
--- a/WebKit/android/benchmark/Intercept.cpp
+++ b/WebKit/android/benchmark/Intercept.cpp
@@ -28,7 +28,6 @@
#include "Base64.h"
#include "CString.h"
-#include "HashMap.h"
#include "HTTPParsers.h"
#include "Intercept.h"
#include "ResourceHandle.h"
@@ -38,6 +37,7 @@
#include "StringHash.h"
#include "TextEncoding.h"
#include <utils/Log.h>
+#include <wtf/HashMap.h>
void MyResourceLoader::handleRequest() {
if (protocolIs(m_url, "data"))
diff --git a/WebKit/android/benchmark/Intercept.h b/WebKit/android/benchmark/Intercept.h
index a5e50c7..2ae7f7b 100644
--- a/WebKit/android/benchmark/Intercept.h
+++ b/WebKit/android/benchmark/Intercept.h
@@ -30,9 +30,9 @@
#include "MyJavaVM.h"
#include "PlatformString.h"
#include "Timer.h"
-#include "Vector.h"
#include "WebCoreFrameBridge.h"
#include "WebCoreResourceLoader.h"
+#include <wtf/Vector.h>
namespace WebCore {
class Page;