diff options
author | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-01 10:48:18 +0000 |
---|---|---|
committer | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-01 10:48:18 +0000 |
commit | d0569f4beccdc58dd5d8c2f3b625c604c1128e46 (patch) | |
tree | 0eb908e72d1d7a2b43116b031e1876f0fb0fcd64 /chrome/renderer/render_thread.cc | |
parent | 62048b7399c6ff30daedccefe9d272cf02d17c87 (diff) | |
download | chromium_src-d0569f4beccdc58dd5d8c2f3b625c604c1128e46.zip chromium_src-d0569f4beccdc58dd5d8c2f3b625c604c1128e46.tar.gz chromium_src-d0569f4beccdc58dd5d8c2f3b625c604c1128e46.tar.bz2 |
Flip the flag to enable geolocation by default.
BUG=39808
TEST=run browser with & withou --disable-geolocaiton.
Review URL: http://codereview.chromium.org/1534008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43337 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/render_thread.cc')
-rw-r--r-- | chrome/renderer/render_thread.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/render_thread.cc b/chrome/renderer/render_thread.cc index c40ef64..19c453e 100644 --- a/chrome/renderer/render_thread.cc +++ b/chrome/renderer/render_thread.cc @@ -870,7 +870,7 @@ void RenderThread::EnsureWebKitInitialized() { command_line.HasSwitch(switches::kEnableIndexedDatabase)); WebRuntimeFeatures::enableGeolocation( - command_line.HasSwitch(switches::kEnableGeolocation)); + !command_line.HasSwitch(switches::kDisableGeolocation)); WebRuntimeFeatures::enableWebGL( command_line.HasSwitch(switches::kEnableExperimentalWebGL)); |