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

Unified Diff: chrome/browser/chromeos/cros/network_library_impl_stub.cc

Issue 10456045: Refactored mobile activation engine outside of WebUI handler in order to expose its state to other … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
« no previous file with comments | « ash/test/test_shell_delegate.cc ('k') | chrome/browser/chromeos/mobile/mobile_activator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/network_library_impl_stub.cc
diff --git a/chrome/browser/chromeos/cros/network_library_impl_stub.cc b/chrome/browser/chromeos/cros/network_library_impl_stub.cc
index 660b5b5ba2afdf11613e31ee33f178a4a22ed2d7..90030b494b9fd673db2135b15c97415e86d92653 100644
--- a/chrome/browser/chromeos/cros/network_library_impl_stub.cc
+++ b/chrome/browser/chromeos/cros/network_library_impl_stub.cc
@@ -170,12 +170,14 @@ void NetworkLibraryImplStub::Init() {
cellular1->set_network_technology(NETWORK_TECHNOLOGY_EVDO);
AddStubNetwork(cellular1, PROFILE_NONE);
- CellularNetwork* cellular2 = new CellularNetwork("cellular2");
+ CellularNetwork* cellular2 = new CellularNetwork("/cellular2");
cellular2->set_name("Fake Cellular 2");
cellular2->set_strength(50);
cellular2->set_activation_state(ACTIVATION_STATE_NOT_ACTIVATED);
cellular2->set_network_technology(NETWORK_TECHNOLOGY_UMTS);
cellular2->set_roaming_state(ROAMING_STATE_ROAMING);
+ cellular2->set_payment_url(std::string("http://www.google.com"));
+ cellular2->set_usage_url(std::string("http://www.google.com"));
AddStubNetwork(cellular2, PROFILE_NONE);
CellularNetwork* cellular3 = new CellularNetwork("cellular3");
« no previous file with comments | « ash/test/test_shell_delegate.cc ('k') | chrome/browser/chromeos/mobile/mobile_activator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698