Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Issue 328793002: Add wifi AP info to system profile metrics (Closed)

Created:
6 years, 6 months ago by zqiu1
Modified:
6 years, 3 months ago
CC:
chromium-reviews, stevenjb+watch_chromium.org, oshima+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Add wifi AP info to system profile metrics Report wifi AP info to UMA system profile information stats for connected APs. The data will not be collected for the APs that contain "_nomap" in their SSID. The stats will be display/analyze in the dashboard that will be created with future CLs. BUG=chromium:378892 TEST=Use NET_LOG messages to verify the AP vendor information. Will also be verified in the future CLs. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=290350

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Total comments: 10

Patch Set 4 : #

Total comments: 14

Patch Set 5 : #

Total comments: 2

Patch Set 6 : #

Patch Set 7 : Update proto_buf for access point information. #

Patch Set 8 : Ignore APs that contain _nomap in their SSID. #

Total comments: 29

Patch Set 9 : #

Total comments: 25

Patch Set 10 : #

Patch Set 11 : Add default constructor/destructor to WifiAccessPointInfo struct to fix compilation error on certai… #

Total comments: 11

Patch Set 12 : #

Total comments: 9

Patch Set 13 : #

Patch Set 14 : #

Patch Set 15 : Using new interface to provide wifi access point information. #

Total comments: 10

Patch Set 16 : #

Total comments: 4

Patch Set 17 : #

Patch Set 18 : Moved access point info provider interface to chrome/browser/metrics/ #

Patch Set 19 : #

Total comments: 1

Patch Set 20 : #

Patch Set 21 : Rebase to ToT #

Patch Set 22 : #

Patch Set 23 : #

Total comments: 6

Patch Set 24 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+390 lines, -0 lines) Patch
M chrome/browser/metrics/network_metrics_provider.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 3 chunks +10 lines, -0 lines 0 comments Download
M chrome/browser/metrics/network_metrics_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 3 chunks +102 lines, -0 lines 0 comments Download
A chrome/browser/metrics/wifi_access_point_info_provider.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +49 lines, -0 lines 0 comments Download
A chrome/browser/metrics/wifi_access_point_info_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +21 lines, -0 lines 0 comments Download
A chrome/browser/metrics/wifi_access_point_info_provider_chromeos.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +42 lines, -0 lines 0 comments Download
A chrome/browser/metrics/wifi_access_point_info_provider_chromeos.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +116 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +4 lines, -0 lines 0 comments Download
M components/metrics/proto/system_profile.proto View 1 2 3 4 5 6 7 1 chunk +46 lines, -0 lines 0 comments Download

Messages

Total messages: 106 (1 generated)
zqiu1
6 years, 6 months ago (2014-06-10 21:34:27 UTC) #1
zqiu1
6 years, 6 months ago (2014-06-10 21:45:36 UTC) #2
stevenjb
Hi, So, we specifically want to avoid caching data like this. NetworkState is intended to ...
6 years, 6 months ago (2014-06-10 23:04:14 UTC) #3
zqiu1
I am interested in AP vendor info for connected networks only, I will go with ...
6 years, 6 months ago (2014-06-10 23:33:45 UTC) #4
stevenjb
That sounds reasonable to me. Cheers, -Steven
6 years, 6 months ago (2014-06-10 23:44:17 UTC) #5
zqiu1
6 years, 6 months ago (2014-06-12 19:24:57 UTC) #6
Ilya Sherman
Several comments: (1) Can you record this data as histograms? If so, that's likely a ...
6 years, 6 months ago (2014-06-12 20:31:07 UTC) #7
stevenjb
https://codereview.chromium.org/328793002/diff/40001/chromeos/network/network_change_notifier_chromeos.cc File chromeos/network/network_change_notifier_chromeos.cc (right): https://codereview.chromium.org/328793002/diff/40001/chromeos/network/network_change_notifier_chromeos.cc#newcode91 chromeos/network/network_change_notifier_chromeos.cc:91: } nit: {} unnecessary. https://codereview.chromium.org/328793002/diff/40001/chromeos/network/network_change_notifier_chromeos.cc#newcode136 chromeos/network/network_change_notifier_chromeos.cc:136: shill::kWifiBSsid, &(info.bssid)); nit: ...
6 years, 6 months ago (2014-06-12 20:54:41 UTC) #8
zqiu1
On 2014/06/12 20:31:07, Ilya Sherman wrote: > Several comments: > (1) Can you record this ...
6 years, 6 months ago (2014-06-12 20:57:59 UTC) #9
Ilya Sherman
On 2014/06/12 20:57:59, zqiu1 wrote: > On 2014/06/12 20:31:07, Ilya Sherman wrote: > > Several ...
6 years, 6 months ago (2014-06-12 21:15:47 UTC) #10
zqiu1
https://codereview.chromium.org/328793002/diff/40001/chromeos/network/network_change_notifier_chromeos.cc File chromeos/network/network_change_notifier_chromeos.cc (right): https://codereview.chromium.org/328793002/diff/40001/chromeos/network/network_change_notifier_chromeos.cc#newcode91 chromeos/network/network_change_notifier_chromeos.cc:91: } On 2014/06/12 20:54:40, stevenjb wrote: > nit: {} ...
6 years, 5 months ago (2014-07-07 23:37:33 UTC) #11
stevenjb
https://codereview.chromium.org/328793002/diff/60001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/60001/chrome/browser/metrics/network_metrics_provider.cc#newcode49 chrome/browser/metrics/network_metrics_provider.cc:49: if (net::NetworkChangeNotifier::GetWifiApInfo(info)) { Is this modifying info? If so ...
6 years, 5 months ago (2014-07-08 00:24:53 UTC) #12
zqiu1
https://codereview.chromium.org/328793002/diff/60001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/60001/chrome/browser/metrics/network_metrics_provider.cc#newcode49 chrome/browser/metrics/network_metrics_provider.cc:49: if (net::NetworkChangeNotifier::GetWifiApInfo(info)) { On 2014/07/08 00:24:53, stevenjb wrote: > ...
6 years, 5 months ago (2014-07-08 20:47:53 UTC) #13
stevenjb
owner lgtm for chromeos/ with parameter order fix. Please make sure that someone more familiar ...
6 years, 5 months ago (2014-07-08 21:55:08 UTC) #14
zqiu1
https://codereview.chromium.org/328793002/diff/80001/chrome/browser/metrics/network_metrics_provider.h File chrome/browser/metrics/network_metrics_provider.h (right): https://codereview.chromium.org/328793002/diff/80001/chrome/browser/metrics/network_metrics_provider.h#newcode47 chrome/browser/metrics/network_metrics_provider.h:47: const net::NetworkChangeNotifier::WifiApInfo &info); On 2014/07/08 21:55:08, stevenjb wrote: > ...
6 years, 5 months ago (2014-07-08 22:20:54 UTC) #15
Ilya Sherman
https://codereview.chromium.org/328793002/diff/140001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/140001/chrome/browser/metrics/network_metrics_provider.cc#newcode11 chrome/browser/metrics/network_metrics_provider.cc:11: #include "base/strings/utf_string_conversions.h" Where do you use UTF string conversions? ...
6 years, 5 months ago (2014-07-10 00:39:10 UTC) #16
zqiu1
https://codereview.chromium.org/328793002/diff/140001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/140001/chrome/browser/metrics/network_metrics_provider.cc#newcode11 chrome/browser/metrics/network_metrics_provider.cc:11: #include "base/strings/utf_string_conversions.h" On 2014/07/10 00:39:09, Ilya Sherman wrote: > ...
6 years, 5 months ago (2014-07-10 18:11:56 UTC) #17
Ilya Sherman
https://codereview.chromium.org/328793002/diff/160001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/160001/chrome/browser/metrics/network_metrics_provider.cc#newcode175 chrome/browser/metrics/network_metrics_provider.cc:175: LOG(WARNING) << "Failed to convert vendor prefix: " << ...
6 years, 5 months ago (2014-07-11 01:32:18 UTC) #18
zqiu1
https://codereview.chromium.org/328793002/diff/160001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/160001/chrome/browser/metrics/network_metrics_provider.cc#newcode175 chrome/browser/metrics/network_metrics_provider.cc:175: LOG(WARNING) << "Failed to convert vendor prefix: " << ...
6 years, 5 months ago (2014-07-14 17:21:58 UTC) #19
Ilya Sherman
https://codereview.chromium.org/328793002/diff/160001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/160001/chrome/browser/metrics/network_metrics_provider.cc#newcode179 chrome/browser/metrics/network_metrics_provider.cc:179: ap_info->mutable_vendor_info(); On 2014/07/14 17:21:57, zqiu1 wrote: > On 2014/07/11 ...
6 years, 5 months ago (2014-07-14 21:25:55 UTC) #20
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 5 months ago (2014-07-15 00:04:41 UTC) #21
zqiu1
The CQ bit was unchecked by zqiu@chromium.org
6 years, 5 months ago (2014-07-15 00:04:51 UTC) #22
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 5 months ago (2014-07-15 00:04:52 UTC) #23
zqiu1
The CQ bit was unchecked by zqiu@chromium.org
6 years, 5 months ago (2014-07-15 00:05:01 UTC) #24
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 5 months ago (2014-07-15 00:05:15 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/zqiu@chromium.org/328793002/180001
6 years, 5 months ago (2014-07-15 00:07:00 UTC) #26
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_gpu on tryserver.chromium.gpu ...
6 years, 5 months ago (2014-07-15 06:09:00 UTC) #27
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-15 06:14:26 UTC) #28
commit-bot: I haz the power
Try jobs failed on following builders: mac_gpu on tryserver.chromium.gpu (http://build.chromium.org/p/tryserver.chromium.gpu/builders/mac_gpu/builds/28637)
6 years, 5 months ago (2014-07-15 06:14:27 UTC) #29
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 5 months ago (2014-07-15 17:00:07 UTC) #30
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/zqiu@chromium.org/328793002/200001
6 years, 5 months ago (2014-07-15 17:03:03 UTC) #31
stevenjb
lgtm w/nits https://codereview.chromium.org/328793002/diff/200001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/200001/chrome/browser/metrics/network_metrics_provider.cc#newcode179 chrome/browser/metrics/network_metrics_provider.cc:179: !info.device_name.empty() || !info.oui_list.empty()) { nit: early exit ...
6 years, 5 months ago (2014-07-15 18:16:14 UTC) #32
zqiu1
https://codereview.chromium.org/328793002/diff/200001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/200001/chrome/browser/metrics/network_metrics_provider.cc#newcode179 chrome/browser/metrics/network_metrics_provider.cc:179: !info.device_name.empty() || !info.oui_list.empty()) { On 2014/07/15 18:16:14, stevenjb wrote: ...
6 years, 5 months ago (2014-07-15 19:34:02 UTC) #33
stevenjb
https://codereview.chromium.org/328793002/diff/200001/net/base/network_change_notifier.h File net/base/network_change_notifier.h (right): https://codereview.chromium.org/328793002/diff/200001/net/base/network_change_notifier.h#newcode64 net/base/network_change_notifier.h:64: ~WifiAccessPointInfo(); On 2014/07/15 19:34:02, zqiu1 wrote: > On 2014/07/15 ...
6 years, 5 months ago (2014-07-15 19:45:08 UTC) #34
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 5 months ago (2014-07-15 20:02:03 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/zqiu@chromium.org/328793002/220001
6 years, 5 months ago (2014-07-15 20:05:23 UTC) #36
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: chromium_presubmit on tryserver.chromium ...
6 years, 5 months ago (2014-07-16 04:57:01 UTC) #37
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-16 05:01:26 UTC) #38
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/chromium_presubmit/builds/80181)
6 years, 5 months ago (2014-07-16 05:01:27 UTC) #39
zqiu1
presubmit failed due to missing LGTM for files: net/base/network_change_notifier.h net/base/network_change_notifier.cc stevenjb and isherman, I am ...
6 years, 5 months ago (2014-07-16 16:00:28 UTC) #40
Ilya Sherman
On 2014/07/16 16:00:28, zqiu1 wrote: > presubmit failed due to missing LGTM for files: > ...
6 years, 5 months ago (2014-07-16 17:52:24 UTC) #41
chromium-reviews
But it claims you and stevenjb already own all the files in the patch: *Owners: ...
6 years, 5 months ago (2014-07-16 18:41:30 UTC) #42
chromium-reviews
But it claims you and stevenjb already own all the files in the patch: *Owners: ...
6 years, 5 months ago (2014-07-16 18:41:30 UTC) #43
chromium-reviews
But it claims you and stevenjb already own all the files in the patch: *Owners: ...
6 years, 5 months ago (2014-07-16 18:41:49 UTC) #44
Ilya Sherman
On 2014/07/16 18:41:49, chromium-reviews wrote: > But it claims you and stevenjb already own all ...
6 years, 5 months ago (2014-07-16 18:50:14 UTC) #45
stevenjb
Illya pointed you to the correct OWNERS file for src/net, you should pick someone from ...
6 years, 5 months ago (2014-07-16 19:57:29 UTC) #46
chromium-reviews
I didn't add Darin as a reviewer, not sure how he get assigned. I will ...
6 years, 5 months ago (2014-07-16 19:59:19 UTC) #47
zqiu1
https://codereview.chromium.org/328793002/diff/220001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/220001/chrome/browser/metrics/network_metrics_provider.cc#newcode180 chrome/browser/metrics/network_metrics_provider.cc:180: return; On 2014/07/16 19:57:29, stevenjb wrote: > nit: Actually, ...
6 years, 5 months ago (2014-07-16 20:01:52 UTC) #48
Ilya Sherman
(Also still LGTM % my extra nit) https://codereview.chromium.org/328793002/diff/220001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/220001/chrome/browser/metrics/network_metrics_provider.cc#newcode131 chrome/browser/metrics/network_metrics_provider.cc:131: SystemProfileProto::Network::WifiAccessPoint* ap_info ...
6 years, 5 months ago (2014-07-16 20:03:52 UTC) #49
zqiu1
https://codereview.chromium.org/328793002/diff/220001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/220001/chrome/browser/metrics/network_metrics_provider.cc#newcode131 chrome/browser/metrics/network_metrics_provider.cc:131: SystemProfileProto::Network::WifiAccessPoint* ap_info = On 2014/07/16 20:03:52, Ilya Sherman wrote: ...
6 years, 5 months ago (2014-07-16 20:19:11 UTC) #50
pauljensen
I think making this part of the NetworkChangeNotifier API is a bad idea as it ...
6 years, 5 months ago (2014-07-17 14:12:12 UTC) #51
chromium-reviews
I am not sure why this is a bad idea. NetworkChangeNotifier already provide APIs for ...
6 years, 5 months ago (2014-07-17 17:18:10 UTC) #52
pauljensen
NetworkChangeNotifier serves two basic purposes: 1. track network state changes so we have a unified ...
6 years, 5 months ago (2014-07-17 18:34:15 UTC) #53
stevenjb
I tend to agree that this seems like an overloaded use of NetworkChangeNotifer. Looking more ...
6 years, 5 months ago (2014-07-17 19:02:35 UTC) #54
chromium-reviews
Sounds good to me, I will look into it based on your suggestions. On Thu, ...
6 years, 5 months ago (2014-07-17 20:45:38 UTC) #55
zqiu1
@stevenjb and @pauljensen, I added a new interface in net/base for providing wifi access point ...
6 years, 5 months ago (2014-07-23 18:56:26 UTC) #56
stevenjb
https://codereview.chromium.org/328793002/diff/280001/chromeos/network/wifi_access_point_info_provider_chromeos.h File chromeos/network/wifi_access_point_info_provider_chromeos.h (right): https://codereview.chromium.org/328793002/diff/280001/chromeos/network/wifi_access_point_info_provider_chromeos.h#newcode16 chromeos/network/wifi_access_point_info_provider_chromeos.h:16: // WifiAccessPointInfoProviderChromeos provide the connected wifi s/provide/provides/ https://codereview.chromium.org/328793002/diff/280001/chromeos/network/wifi_access_point_info_provider_chromeos.h#newcode39 chromeos/network/wifi_access_point_info_provider_chromeos.h:39: ...
6 years, 5 months ago (2014-07-23 20:03:36 UTC) #57
zqiu1
https://codereview.chromium.org/328793002/diff/280001/chromeos/network/wifi_access_point_info_provider_chromeos.h File chromeos/network/wifi_access_point_info_provider_chromeos.h (right): https://codereview.chromium.org/328793002/diff/280001/chromeos/network/wifi_access_point_info_provider_chromeos.h#newcode16 chromeos/network/wifi_access_point_info_provider_chromeos.h:16: // WifiAccessPointInfoProviderChromeos provide the connected wifi On 2014/07/23 20:03:36, ...
6 years, 5 months ago (2014-07-23 21:48:40 UTC) #58
stevenjb
https://codereview.chromium.org/328793002/diff/300001/chrome/browser/metrics/network_metrics_provider.h File chrome/browser/metrics/network_metrics_provider.h (right): https://codereview.chromium.org/328793002/diff/300001/chrome/browser/metrics/network_metrics_provider.h#newcode20 chrome/browser/metrics/network_metrics_provider.h:20: #endif // OS_CHROMEOS Put this in the .cc file, ...
6 years, 5 months ago (2014-07-23 22:21:16 UTC) #59
zqiu1
https://codereview.chromium.org/328793002/diff/300001/chrome/browser/metrics/network_metrics_provider.h File chrome/browser/metrics/network_metrics_provider.h (right): https://codereview.chromium.org/328793002/diff/300001/chrome/browser/metrics/network_metrics_provider.h#newcode20 chrome/browser/metrics/network_metrics_provider.h:20: #endif // OS_CHROMEOS On 2014/07/23 22:21:15, stevenjb wrote: > ...
6 years, 5 months ago (2014-07-23 22:41:33 UTC) #60
stevenjb
chromeos/ lgtm
6 years, 5 months ago (2014-07-23 22:43:08 UTC) #61
zqiu1
@pauljensen, can you review the net/base changes? Thanks, Peter,
6 years, 5 months ago (2014-07-25 17:07:55 UTC) #62
pauljensen
I don't think there is a need for a abstract virtual interface when there will ...
6 years, 4 months ago (2014-07-28 16:32:28 UTC) #63
zqiu1
On 2014/07/28 16:32:28, pauljensen wrote: > I don't think there is a need for a ...
6 years, 4 months ago (2014-07-28 18:52:27 UTC) #64
stevenjb
On 2014/07/28 16:32:28, pauljensen wrote: > I don't think there is a need for a ...
6 years, 4 months ago (2014-07-28 22:35:27 UTC) #65
chromium-reviews
The reason I put WifiAccessPointInfoProvider in net/base is that I thought net/base is a common ...
6 years, 4 months ago (2014-07-28 22:53:00 UTC) #66
zqiu1
@stevenjb, I've moved the access point info provider interface to chrome/browser/metrics/. Please take another look.
6 years, 4 months ago (2014-07-29 17:12:53 UTC) #67
stevenjb
Mostly looks good, just one more change, thanks. https://codereview.chromium.org/328793002/diff/360001/chrome/browser/metrics/wifi_access_point_info_provider.h File chrome/browser/metrics/wifi_access_point_info_provider.h (right): https://codereview.chromium.org/328793002/diff/360001/chrome/browser/metrics/wifi_access_point_info_provider.h#newcode11 chrome/browser/metrics/wifi_access_point_info_provider.h:11: enum ...
6 years, 4 months ago (2014-07-29 17:17:53 UTC) #68
zqiu1
@stevenjb, PTAL.
6 years, 4 months ago (2014-07-29 18:28:23 UTC) #69
stevenjb
lgtm
6 years, 4 months ago (2014-07-29 18:32:13 UTC) #70
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 4 months ago (2014-07-29 18:32:39 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/zqiu@chromium.org/328793002/380001
6 years, 4 months ago (2014-07-29 18:33:33 UTC) #72
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_gpu on tryserver.chromium.gpu ...
6 years, 4 months ago (2014-07-29 20:22:20 UTC) #73
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-07-29 20:24:29 UTC) #74
commit-bot: I haz the power
Try jobs failed on following builders: mac_gpu on tryserver.chromium.gpu (http://build.chromium.org/p/tryserver.chromium.gpu/builders/mac_gpu/builds/34952) ios_dbg_simulator on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator/builds/916) ios_rel_device ...
6 years, 4 months ago (2014-07-29 20:24:30 UTC) #75
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 4 months ago (2014-07-30 16:47:24 UTC) #76
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/zqiu@chromium.org/328793002/380001
6 years, 4 months ago (2014-07-30 16:48:04 UTC) #77
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_gpu on tryserver.chromium.gpu ...
6 years, 4 months ago (2014-07-30 17:02:07 UTC) #78
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-07-30 17:04:15 UTC) #79
commit-bot: I haz the power
Try jobs failed on following builders: mac_gpu on tryserver.chromium.gpu (http://build.chromium.org/p/tryserver.chromium.gpu/builders/mac_gpu/builds/35391) android_aosp on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/android_aosp/builds/1306)
6 years, 4 months ago (2014-07-30 17:04:17 UTC) #80
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 4 months ago (2014-07-30 17:27:38 UTC) #81
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/zqiu@chromium.org/328793002/390001
6 years, 4 months ago (2014-07-30 17:30:43 UTC) #82
zqiu1
The CQ bit was unchecked by zqiu@chromium.org
6 years, 4 months ago (2014-07-30 18:43:32 UTC) #83
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 4 months ago (2014-07-30 19:20:29 UTC) #84
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/zqiu@chromium.org/328793002/410001
6 years, 4 months ago (2014-07-30 19:21:06 UTC) #85
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-01 01:27:17 UTC) #86
commit-bot: I haz the power
Exceeded time limit waiting for builds to trigger.
6 years, 4 months ago (2014-08-01 01:27:19 UTC) #87
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 4 months ago (2014-08-04 17:12:29 UTC) #88
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/zqiu@chromium.org/328793002/410001
6 years, 4 months ago (2014-08-04 17:13:56 UTC) #89
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_chromium_chromeos_rel_swarming on tryserver.chromium.linux ...
6 years, 4 months ago (2014-08-04 23:22:59 UTC) #90
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-05 06:46:40 UTC) #91
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_swarming on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_swarming/builds/1138)
6 years, 4 months ago (2014-08-05 06:46:41 UTC) #92
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 4 months ago (2014-08-06 20:21:54 UTC) #93
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/zqiu@chromium.org/328793002/410001
6 years, 4 months ago (2014-08-06 20:23:29 UTC) #94
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_chromium_chromeos_rel_swarming on tryserver.chromium.linux ...
6 years, 4 months ago (2014-08-07 14:29:34 UTC) #95
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-07 20:31:38 UTC) #96
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_swarming on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_swarming/builds/1138)
6 years, 4 months ago (2014-08-07 20:31:40 UTC) #97
zqiu1
@stevenjb, Wifi access point provider creation is deferred to NetworkMetricsProvider::ProvideSystemProfileMetrics instead of NetworkMetricsProvider constructor to ...
6 years, 4 months ago (2014-08-11 19:02:33 UTC) #98
stevenjb
https://codereview.chromium.org/328793002/diff/430001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/430001/chrome/browser/metrics/network_metrics_provider.cc#newcode54 chrome/browser/metrics/network_metrics_provider.cc:54: new WifiAccessPointInfoProviderChromeos()); wifi_access_point_info_provider_.reset(new WifiAccessPointInfoProviderChromeos()); (Sorry, I should have caught ...
6 years, 4 months ago (2014-08-18 17:28:14 UTC) #99
zqiu1
@stevenjb, PTAL https://codereview.chromium.org/328793002/diff/430001/chrome/browser/metrics/network_metrics_provider.cc File chrome/browser/metrics/network_metrics_provider.cc (right): https://codereview.chromium.org/328793002/diff/430001/chrome/browser/metrics/network_metrics_provider.cc#newcode54 chrome/browser/metrics/network_metrics_provider.cc:54: new WifiAccessPointInfoProviderChromeos()); On 2014/08/18 17:28:14, stevenjb wrote: ...
6 years, 4 months ago (2014-08-18 18:02:29 UTC) #100
stevenjb
lgtm
6 years, 4 months ago (2014-08-18 18:16:18 UTC) #101
zqiu1
The CQ bit was checked by zqiu@chromium.org
6 years, 4 months ago (2014-08-18 18:26:05 UTC) #102
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/zqiu@chromium.org/328793002/450001
6 years, 4 months ago (2014-08-18 18:27:13 UTC) #103
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: mac_chromium_compile_dbg on tryserver.chromium.mac ...
6 years, 4 months ago (2014-08-18 19:44:13 UTC) #104
commit-bot: I haz the power
6 years, 4 months ago (2014-08-18 20:12:13 UTC) #105
Message was sent while issue was closed.
Committed patchset #24 (450001) as 290350

Powered by Google App Engine
This is Rietveld 408576698