From f8cc8c6350cd22151d8a41d2158b6693742e079b Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 7 Jul 2011 13:51:26 +0000 Subject: [PATCH] Set WebRuntimeFeatures::enableTouch(false) to allow Google Maps API to function correctly (issue #134). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@265 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- libcef/browser_webkit_init.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcef/browser_webkit_init.h b/libcef/browser_webkit_init.h index a57fb890b..31c60939d 100644 --- a/libcef/browser_webkit_init.h +++ b/libcef/browser_webkit_init.h @@ -57,13 +57,13 @@ class BrowserWebKitInit : public webkit_glue::WebKitClientImpl { WebKit::WebRuntimeFeatures::enableDatabase(true); WebKit::WebRuntimeFeatures::enablePushState(true); WebKit::WebRuntimeFeatures::enableNotifications(false); - WebKit::WebRuntimeFeatures::enableTouch(true); WebKit::WebRuntimeFeatures::enableIndexedDatabase(true); WebKit::WebRuntimeFeatures::enableGeolocation(false); WebKit::WebRuntimeFeatures::enableSpeechInput(true); WebKit::WebRuntimeFeatures::enableFileSystem(true); - // TODO(hwennborg): Enable this once the implementation supports it. + // TODO: Enable these once the implementation supports it. + WebKit::WebRuntimeFeatures::enableTouch(false); WebKit::WebRuntimeFeatures::enableDeviceMotion(false); WebKit::WebRuntimeFeatures::enableDeviceOrientation(false);