Index: chrome/browser/chromeos/cros/network_library.cc |
diff --git a/chrome/browser/chromeos/cros/network_library.cc b/chrome/browser/chromeos/cros/network_library.cc |
index dd6b5d5a79870890c1902f00581475b96130ebb3..5698b3aa56e6c447c25155e73179ef9ee337e2ae 100644 |
--- a/chrome/browser/chromeos/cros/network_library.cc |
+++ b/chrome/browser/chromeos/cros/network_library.cc |
@@ -912,6 +912,10 @@ bool CellularNetwork::NeedsActivation() const { |
activation_state() == ACTIVATION_STATE_PARTIALLY_ACTIVATED); |
} |
+bool CellularNetwork::UsesDirectActivation() const { |
tbarzic
2013/05/06 18:02:11
Ben, is this correct way to determine if the netwo
|
+ return operator_name_ == shill::kCarrierSprint; |
tbarzic
2013/05/02 01:07:29
this should be the same as
device->carrier() == sh
stevenjb
2013/05/03 22:19:34
I'm not certain, we should confirm this.
Ben Chan
2013/05/06 18:07:52
Should be checked against Device.Carrier as Servic
|
+} |
+ |
std::string CellularNetwork::GetNetworkTechnologyString() const { |
// No need to localize these cellular technology abbreviations. |
switch (network_technology_) { |