summaryrefslogtreecommitdiffstats
path: root/WebKit/android/benchmark
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2009-11-24 23:25:53 +0000
committerSteve Block <steveblock@google.com>2009-11-24 23:25:53 +0000
commit9ca5793315e248418a353cc1443f3803ae0adfe6 (patch)
tree99894786b06078c99b668f19c4743e8d830a2000 /WebKit/android/benchmark
parentf530723afaa12c74187595ce22ce2f84c3fba2be (diff)
downloadexternal_webkit-9ca5793315e248418a353cc1443f3803ae0adfe6.zip
external_webkit-9ca5793315e248418a353cc1443f3803ae0adfe6.tar.gz
external_webkit-9ca5793315e248418a353cc1443f3803ae0adfe6.tar.bz2
Fixes WTF include in WebCore/page/Geolocation.cpp to fix Mac build.
Also fixes include problems in files in WebKit/android. Change-Id: I6d6312e9753eb2bbf0b61f20a6ef0eb56f990991
Diffstat (limited to 'WebKit/android/benchmark')
-rw-r--r--WebKit/android/benchmark/Intercept.cpp2
-rw-r--r--WebKit/android/benchmark/Intercept.h2
2 files changed, 2 insertions, 2 deletions
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;