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

Unified Diff: chromeos/dbus/shill_service_client_stub.cc

Issue 12279012: Change the modem reset command on cellular activation completion. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « chromeos/dbus/shill_service_client_stub.h ('k') | chromeos/network/cros_network_functions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/shill_service_client_stub.cc
diff --git a/chromeos/dbus/shill_service_client_stub.cc b/chromeos/dbus/shill_service_client_stub.cc
index edf422790e2db31a5732cb59710451cc95e2f629..088369307f5071414aff6d3d19b246140b942162 100644
--- a/chromeos/dbus/shill_service_client_stub.cc
+++ b/chromeos/dbus/shill_service_client_stub.cc
@@ -221,6 +221,15 @@ void ShillServiceClientStub::ActivateCellularModem(
MessageLoop::current()->PostTask(FROM_HERE, callback);
}
+void ShillServiceClientStub::CompleteCellularActivation(
+ const dbus::ObjectPath& service_path,
+ const base::Closure& callback,
+ const ErrorCallback& error_callback) {
+ if (callback.is_null())
+ return;
+ MessageLoop::current()->PostTask(FROM_HERE, callback);
+}
+
bool ShillServiceClientStub::CallActivateCellularModemAndBlock(
const dbus::ObjectPath& service_path,
const std::string& carrier) {
« no previous file with comments | « chromeos/dbus/shill_service_client_stub.h ('k') | chromeos/network/cros_network_functions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698