summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport
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/WebCoreSupport
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/WebCoreSupport')
-rw-r--r--WebKit/android/WebCoreSupport/ChromeClientAndroid.h2
-rwxr-xr-xWebKit/android/WebCoreSupport/GeolocationPermissions.h8
2 files changed, 5 insertions, 5 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;