mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 823789 - Pass enableHighAccuracy geolocation changes to the chrome process. r=dougt
This commit is contained in:
parent
1d8b58e4a7
commit
72b2dfd106
@ -80,6 +80,7 @@
|
||||
#include "StructuredCloneUtils.h"
|
||||
#include "TabParent.h"
|
||||
#include "URIUtils.h"
|
||||
#include "nsGeolocation.h"
|
||||
|
||||
#ifdef ANDROID
|
||||
# include "gfxAndroidPlatform.h"
|
||||
@ -1969,6 +1970,15 @@ ContentParent::RecvRemoveGeolocationListener()
|
||||
return true;
|
||||
}
|
||||
|
||||
bool
|
||||
ContentParent::RecvSetGeolocationHigherAccuracy(const bool& aEnable)
|
||||
{
|
||||
nsRefPtr<nsGeolocationService> geoSvc =
|
||||
nsGeolocationService::GetGeolocationService();
|
||||
geoSvc->SetHigherAccuracy(aEnable);
|
||||
return true;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
ContentParent::HandleEvent(nsIDOMGeoPosition* postion)
|
||||
{
|
||||
|
@ -302,6 +302,7 @@ private:
|
||||
|
||||
virtual bool RecvAddGeolocationListener();
|
||||
virtual bool RecvRemoveGeolocationListener();
|
||||
virtual bool RecvSetGeolocationHigherAccuracy(const bool& aEnable);
|
||||
|
||||
virtual bool RecvConsoleMessage(const nsString& aMessage);
|
||||
virtual bool RecvScriptError(const nsString& aMessage,
|
||||
|
@ -81,6 +81,7 @@ LOCAL_INCLUDES += \
|
||||
-I$(topsrcdir)/uriloader/exthandler \
|
||||
-I$(srcdir)/../../netwerk/base/src \
|
||||
-I$(srcdir)/../src/base \
|
||||
-I$(srcdir)/../src/geolocation \
|
||||
-I$(srcdir)/../src/storage \
|
||||
-I$(srcdir)/../../xpcom/base \
|
||||
-I$(topsrcdir)/dom/indexedDB \
|
||||
|
@ -397,6 +397,7 @@ parent:
|
||||
|
||||
AddGeolocationListener();
|
||||
RemoveGeolocationListener();
|
||||
SetGeolocationHigherAccuracy(bool enable);
|
||||
|
||||
ConsoleMessage(nsString message);
|
||||
ScriptError(nsString message, nsString sourceName, nsString sourceLine,
|
||||
|
@ -1003,6 +1003,12 @@ nsGeolocationService::SetDisconnectTimer()
|
||||
void
|
||||
nsGeolocationService::SetHigherAccuracy(bool aEnable)
|
||||
{
|
||||
if (XRE_GetProcessType() == GeckoProcessType_Content) {
|
||||
ContentChild* cpc = ContentChild::GetSingleton();
|
||||
cpc->SendSetGeolocationHigherAccuracy(aEnable);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!mHigherAccuracy && aEnable) {
|
||||
for (int32_t i = 0; i < mProviders.Count(); i++) {
|
||||
mProviders[i]->SetHighAccuracy(true);
|
||||
|
@ -15,6 +15,7 @@ const Cc = Components.classes;
|
||||
|
||||
let gLoggingEnabled = false;
|
||||
let gTestingEnabled = false;
|
||||
let gDesist = false;
|
||||
|
||||
let gPrivateAccessToken = '';
|
||||
let gPrivateAccessTime = 0;
|
||||
@ -109,7 +110,13 @@ WifiGeoPositionProvider.prototype = {
|
||||
|
||||
watch: function(c, requestPrivate) {
|
||||
LOG("watch called");
|
||||
if (!this.wifiService) {
|
||||
|
||||
let useScanning = true;
|
||||
try {
|
||||
useScanning = Services.prefs.getBoolPref("geo.wifi.scan");
|
||||
} catch (e) {}
|
||||
|
||||
if (!this.wifiService && useScanning) {
|
||||
this.wifiService = Cc["@mozilla.org/wifi/monitor;1"].getService(Components.interfaces.nsIWifiMonitor);
|
||||
this.wifiService.startWatching(this);
|
||||
this.lastRequestPrivate = requestPrivate;
|
||||
|
61
dom/tests/unit/test_geolocation_timeout.js
Normal file
61
dom/tests/unit/test_geolocation_timeout.js
Normal file
@ -0,0 +1,61 @@
|
||||
const Cc = Components.classes;
|
||||
const Ci = Components.interfaces;
|
||||
const Cu = Components.utils;
|
||||
const Cr = Components.results;
|
||||
|
||||
Cu.import("resource://testing-common/httpd.js");
|
||||
|
||||
var httpserver = null;
|
||||
var geolocation = null;
|
||||
var success = false;
|
||||
var watchId = -1;
|
||||
|
||||
function geoHandler(metadata, response)
|
||||
{
|
||||
var georesponse = {
|
||||
status: "OK",
|
||||
location: {
|
||||
lat: 42,
|
||||
lng: 42,
|
||||
},
|
||||
accuracy: 42,
|
||||
};
|
||||
var position = JSON.stringify(georesponse);
|
||||
response.processAsync();
|
||||
response.setStatusLine("1.0", 200, "OK");
|
||||
response.setHeader("Cache-Control", "no-cache", false);
|
||||
response.setHeader("Content-Type", "aplication/x-javascript", false);
|
||||
do_timeout(5000, function() {
|
||||
response.write(position);
|
||||
response.finish();
|
||||
});
|
||||
}
|
||||
|
||||
function successCallback() {
|
||||
do_check_true(false);
|
||||
do_test_finished();
|
||||
}
|
||||
|
||||
function errorCallback() {
|
||||
do_check_true(true);
|
||||
do_test_finished();
|
||||
}
|
||||
|
||||
function run_test()
|
||||
{
|
||||
do_test_pending();
|
||||
|
||||
httpserver = new HttpServer();
|
||||
httpserver.registerPathHandler("/geo", geoHandler);
|
||||
httpserver.start(4444);
|
||||
|
||||
if (Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULRuntime)
|
||||
.processType == Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT) {
|
||||
var prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranch);
|
||||
prefs.setBoolPref("geo.wifi.scan", false);
|
||||
prefs.setCharPref("geo.wifi.uri", "http://localhost:4444/geo");
|
||||
}
|
||||
|
||||
geolocation = Cc["@mozilla.org/geolocation;1"].getService(Ci.nsIDOMGeoGeolocation);
|
||||
geolocation.getCurrentPosition(successCallback, errorCallback, {timeout: 2000});
|
||||
}
|
9
dom/tests/unit/test_geolocation_timeout_wrap.js
Normal file
9
dom/tests/unit/test_geolocation_timeout_wrap.js
Normal file
@ -0,0 +1,9 @@
|
||||
const Cc = Components.classes;
|
||||
const Ci = Components.interfaces;
|
||||
|
||||
function run_test() {
|
||||
var prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranch);
|
||||
prefs.setBoolPref("geo.wifi.scan", false);
|
||||
prefs.setCharPref("geo.wifi.uri", "http://localhost:4444/geo");
|
||||
run_test_in_child("./test_geolocation_timeout.js");
|
||||
}
|
@ -5,5 +5,8 @@ tail =
|
||||
[test_bug319968.js]
|
||||
[test_bug465752.js]
|
||||
[test_geolocation_provider.js]
|
||||
[test_geolocation_timeout.js]
|
||||
[test_geolocation_timeout_wrap.js]
|
||||
skip-if = os == "mac"
|
||||
# Bug 684962: test hangs consistently on Android
|
||||
skip-if = os == "android"
|
||||
|
Loading…
Reference in New Issue
Block a user