From 069e877307f0fd9b02d42be04e67137f5933dab4 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 8 Apr 2010 15:26:54 +0000 Subject: [PATCH] Disable Geolocation service to avoid crash (issue #80). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@77 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- libcef/browser_webkit_init.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libcef/browser_webkit_init.h b/libcef/browser_webkit_init.h index 388a96c3e..25ea46586 100644 --- a/libcef/browser_webkit_init.h +++ b/libcef/browser_webkit_init.h @@ -53,6 +53,7 @@ class BrowserWebKitInit : public webkit_glue::WebKitClientImpl { WebKit::WebRuntimeFeatures::enableApplicationCache(true); WebKit::WebRuntimeFeatures::enableDatabase(true); WebKit::WebRuntimeFeatures::enableWebGL(true); + WebKit::WebRuntimeFeatures::enableGeolocation(false); // Load libraries for media and enable the media player. FilePath module_path;