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

Unified Diff: chromeos/network/device_state.h

Issue 1059033002: Implement networkingPrivate.getDeviceStates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chromeos/network/device_state.h
diff --git a/chromeos/network/device_state.h b/chromeos/network/device_state.h
index 78ea2e2e3574e5c3849c796e2c856108c7ff8abc..b09d63e21e08eaec7f5c6bbb62270455450b0247 100644
--- a/chromeos/network/device_state.h
+++ b/chromeos/network/device_state.h
@@ -31,13 +31,13 @@ class CHROMEOS_EXPORT DeviceState : public ManagedState {
// Accessors
const std::string& mac_address() const { return mac_address_; }
+ bool scanning() const { return scanning_; }
// Cellular specific accessors
const std::string& home_provider_id() const { return home_provider_id_; }
bool allow_roaming() const { return allow_roaming_; }
bool provider_requires_roaming() const { return provider_requires_roaming_; }
bool support_network_scan() const { return support_network_scan_; }
- bool scanning() const { return scanning_; }
const std::string& technology_family() const { return technology_family_; }
const std::string& carrier() const { return carrier_; }
const std::string& sim_lock_type() const { return sim_lock_type_; }

Powered by Google App Engine
This is Rietveld 408576698