From owner-freebsd-chromium@FreeBSD.ORG Mon Mar 11 03:42:05 2013 Return-Path: Delivered-To: freebsd-chromium@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5B007C7F for ; Mon, 11 Mar 2013 03:42:05 +0000 (UTC) (envelope-from fbsd@opal.com) Received: from mho-02-ewr.mailhop.org (mho-04-ewr.mailhop.org [204.13.248.74]) by mx1.freebsd.org (Postfix) with ESMTP id 091BF1F4 for ; Mon, 11 Mar 2013 03:42:04 +0000 (UTC) Received: from pool-141-154-241-44.bos.east.verizon.net ([141.154.241.44] helo=homobox.opal.com) by mho-02-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1UEtci-000GwA-2L; Mon, 11 Mar 2013 03:42:04 +0000 Received: from shibato (pool-173-52-168-49.nycmny.east.verizon.net [173.52.168.49]) (authenticated bits=0) by homobox.opal.com (8.14.4/8.14.4) with ESMTP id r2B3g0qj033228 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sun, 10 Mar 2013 23:42:01 -0400 (EDT) (envelope-from fbsd@opal.com) X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 141.154.241.44 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1/p73Qbg2SoNBQPx+FFWzWT Date: Sun, 10 Mar 2013 23:41:53 -0400 From: "J.R. Oldroyd" To: =?UTF-8?B?UmVuw6k=?= Ladan Subject: Re: geolocation (was: Re: chromium v25.0.1364.97 problems) Message-ID: <20130310234153.2a6078f0@shibato> In-Reply-To: <513CDD60.1000807@gmail.com> References: <135007687.20087195.1361905506071.JavaMail.root@k-state.edu> <985459515.20213713.1361920260108.JavaMail.root@k-state.edu> <20130302084256.33869737@shibato> <513CDD60.1000807@gmail.com> X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.1) Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.6 (homobox.opal.com [141.154.241.44]); Sun, 10 Mar 2013 23:42:01 -0400 (EDT) X-Spam-Status: No, score=2.8 required=5.0 tests=AWL,BAYES_00, FH_HOST_EQ_VERIZON_P,FSL_HELO_NON_FQDN_1,RCVD_IN_PBL,RDNS_DYNAMIC shortcircuit=no autolearn=no version=3.3.2 X-Spam-Level: ** X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on homobox.opal.com Cc: freebsd-chromium@freebsd.org 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: Mon, 11 Mar 2013 03:42:05 -0000 On Sun, 10 Mar 2013 20:22:08 +0100 Ren=C3=A9 Ladan wr= ote: > > I think the correct syntax is "chrome --v=3D1" (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. >=20 > So a list is retrieved but somehow not processed correctly. >=20 Confirmed that when I replace the VLOG() with LOG(ERROR) it does show the WiFi AP scan info. That's good. The FreeBSD WiFi AP scan code is still working, then. VLOG() was working when I wrote the WiFI AP scan code on 23.x, by the way. So the AP scan list is returned to DoWifiScanTask() in wifi_data_provider_common.cc where it is compared to the previous scan results and if DiffersSignificantly() or it is the first scan, NotifyListeners() is called. That's an inline macro that calls DeviceDataUpdateAvailable() on all registered listeners. Ok, who here knows how to backtrace C++ callers? -jr