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

Side by Side Diff: chrome/browser/metrics/network_metrics_provider.h

Issue 328793002: Add wifi AP info to system profile metrics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_METRICS_NETWORK_METRICS_PROVIDER_H_ 5 #ifndef CHROME_BROWSER_METRICS_NETWORK_METRICS_PROVIDER_H_
6 #define CHROME_BROWSER_METRICS_NETWORK_METRICS_PROVIDER_H_ 6 #define CHROME_BROWSER_METRICS_NETWORK_METRICS_PROVIDER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 24 matching lines...) Expand all
35 GetConnectionType() const; 35 GetConnectionType() const;
36 metrics::SystemProfileProto::Network::WifiPHYLayerProtocol 36 metrics::SystemProfileProto::Network::WifiPHYLayerProtocol
37 GetWifiPHYLayerProtocol() const; 37 GetWifiPHYLayerProtocol() const;
38 38
39 // Posts a call to net::GetWifiPHYLayerProtocol on the blocking pool. 39 // Posts a call to net::GetWifiPHYLayerProtocol on the blocking pool.
40 void ProbeWifiPHYLayerProtocol(); 40 void ProbeWifiPHYLayerProtocol();
41 // Callback from the blocking pool with the result of 41 // Callback from the blocking pool with the result of
42 // net::GetWifiPHYLayerProtocol. 42 // net::GetWifiPHYLayerProtocol.
43 void OnWifiPHYLayerProtocolResult(net::WifiPHYLayerProtocol mode); 43 void OnWifiPHYLayerProtocolResult(net::WifiPHYLayerProtocol mode);
44 44
45 // Writes info about the wireless access points that this system had
Ilya Sherman 2014/07/11 01:32:17 nit: "had" -> "is"?
zqiu1 2014/07/14 17:21:57 Done.
46 // connected to.
47 void WriteWifiAccessPointProto(
48 const net::NetworkChangeNotifier::WifiAccessPointInfo& info,
49 metrics::SystemProfileProto::Network* network_proto);
50
45 // True if |connection_type_| changed during the lifetime of the log. 51 // True if |connection_type_| changed during the lifetime of the log.
46 bool connection_type_is_ambiguous_; 52 bool connection_type_is_ambiguous_;
47 // The connection type according to net::NetworkChangeNotifier. 53 // The connection type according to net::NetworkChangeNotifier.
48 net::NetworkChangeNotifier::ConnectionType connection_type_; 54 net::NetworkChangeNotifier::ConnectionType connection_type_;
49 55
50 // True if |wifi_phy_layer_protocol_| changed during the lifetime of the log. 56 // True if |wifi_phy_layer_protocol_| changed during the lifetime of the log.
51 bool wifi_phy_layer_protocol_is_ambiguous_; 57 bool wifi_phy_layer_protocol_is_ambiguous_;
52 // The PHY mode of the currently associated access point obtained via 58 // The PHY mode of the currently associated access point obtained via
53 // net::GetWifiPHYLayerProtocol. 59 // net::GetWifiPHYLayerProtocol.
54 net::WifiPHYLayerProtocol wifi_phy_layer_protocol_; 60 net::WifiPHYLayerProtocol wifi_phy_layer_protocol_;
55 61
56 base::WeakPtrFactory<NetworkMetricsProvider> weak_ptr_factory_; 62 base::WeakPtrFactory<NetworkMetricsProvider> weak_ptr_factory_;
57 63
58 DISALLOW_COPY_AND_ASSIGN(NetworkMetricsProvider); 64 DISALLOW_COPY_AND_ASSIGN(NetworkMetricsProvider);
59 }; 65 };
60 66
61 #endif // CHROME_BROWSER_METRICS_NETWORK_METRICS_PROVIDER_H_ 67 #endif // CHROME_BROWSER_METRICS_NETWORK_METRICS_PROVIDER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/metrics/network_metrics_provider.cc » ('j') | chrome/browser/metrics/network_metrics_provider.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698