From owner-freebsd-chromium@FreeBSD.ORG Sun Mar 10 19:22:15 2013 Return-Path: Delivered-To: freebsd-chromium@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0BD84532 for ; Sun, 10 Mar 2013 19:22:15 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from mail-we0-x22f.google.com (mail-we0-x22f.google.com [IPv6:2a00:1450:400c:c03::22f]) by mx1.freebsd.org (Postfix) with ESMTP id 65F6DC01 for ; Sun, 10 Mar 2013 19:22:14 +0000 (UTC) Received: by mail-we0-f175.google.com with SMTP id x8so2861676wey.34 for ; Sun, 10 Mar 2013 12:22:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=wl6UCSqETBj85iHSDxHmU2MorXy6pI4t0oURe+WgN9g=; b=c5zd6K/XdMMbX3AItPr2O/N4uTnJMnl5wfiBk62OH3R9EjN0YTwXjAC+ltATiDTKPS VuwzMU9MvE8/5agvrtoU1adcJMWh1QeWf4oQNVjj99qEP2cvucCJRS+IvvoGCnhWHtXm UM1b7CCVKR1G7a0bSFsXfOMIKrpG6VU/0U8AZBFHzrZZdkvEd1vHrHxNs1vRU7PPBHNx i3eznqziDVTXTvT3KzrmyPWYE3oJ5uEvfOHP+ZieAgZLiqBcGl0O2f2pNo/0XbDk/PwA hodkTXLNmI6x0lwMdqJ7oWLy9pvXIqwLfXZoW0g1uvB+tp5bLaVSLL6b6GBacfLvl6rV j1hw== X-Received: by 10.194.19.135 with SMTP id f7mr14994238wje.27.1362943333342; Sun, 10 Mar 2013 12:22:13 -0700 (PDT) Received: from ?IPv6:2001:980:d7ed:1:51c2:633e:5f93:6b06? ([2001:980:d7ed:1:51c2:633e:5f93:6b06]) by mx.google.com with ESMTPS id du2sm11484427wib.0.2013.03.10.12.22.11 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Mar 2013 12:22:12 -0700 (PDT) Message-ID: <513CDD60.1000807@gmail.com> Date: Sun, 10 Mar 2013 20:22:08 +0100 From: =?ISO-8859-1?Q?Ren=E9_Ladan?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130228 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-chromium@freebsd.org Subject: geolocation (was: Re: chromium v25.0.1364.97 problems) References: <135007687.20087195.1361905506071.JavaMail.root@k-state.edu> <985459515.20213713.1361920260108.JavaMail.root@k-state.edu> <20130302084256.33869737@shibato> In-Reply-To: <20130302084256.33869737@shibato> X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 19:22:15 -0000 On 02-03-2013 14:42, J.R. Oldroyd wrote: > On Tue, 26 Feb 2013 18:11:00 -0500 (EST) "Lawrence K. Chen, P.Eng." wrote: >> >> Also Currently seems to no longer be able to figure out my location anymore. >> >> Anybody else seeing this? >> > > Yes. > > I took a look at the wifi geolocation code, and it is still there and > looks like it's still compiling in. So this must be another example > of some other C++ class masking out the FreeBSD wifi provider class. > It is still compiling in. > You can run with "chrome -v 1" from the console and go to any geoloc > web page. If it's working, you'll see messages showing the wifi > access points it is using to determine your location. But it is not > showing those messages, which means that the FreeBSD wifi class is > not being executed. > I think the correct syntax is "chrome --v=1" (google for "chromium vlog") but VLOG() seems broken. If you replace the VLOG(1) in wifi_data_provider_freebsd.cc by a LOG(ERROR) you will see a list of access points on the console. So a list is retrieved but somehow not processed correctly. Rene