| Index: chromeos/dbus/shill_manager_client.cc
|
| diff --git a/chromeos/dbus/shill_manager_client.cc b/chromeos/dbus/shill_manager_client.cc
|
| index 0ad602f22bbb52656ea07c47ee1b11451972b10f..61423538d7c00c5497096ecf5b37f64a3cefb4a9 100644
|
| --- a/chromeos/dbus/shill_manager_client.cc
|
| +++ b/chromeos/dbus/shill_manager_client.cc
|
| @@ -210,6 +210,44 @@ class ShillManagerClientImpl : public ShillManagerClient {
|
| error_callback);
|
| }
|
|
|
| + virtual void AddWakeOnPacketConnection(
|
| + const std::string& ip_connection,
|
| + const base::Closure& callback,
|
| + const ErrorCallback& error_callback) OVERRIDE {
|
| + dbus::MethodCall method_call(shill::kFlimflamManagerInterface,
|
| + shill::kAddWakeOnPacketConnectionFunction);
|
| + dbus::MessageWriter writer(&method_call);
|
| + writer.AppendString(ip_connection);
|
| + helper_->CallVoidMethodWithErrorCallback(&method_call,
|
| + callback,
|
| + error_callback);
|
| + }
|
| +
|
| + virtual void RemoveWakeOnPacketConnection(
|
| + const std::string& ip_connection,
|
| + const base::Closure& callback,
|
| + const ErrorCallback& error_callback) OVERRIDE {
|
| + dbus::MethodCall method_call(shill::kFlimflamManagerInterface,
|
| + shill::kRemoveWakeOnPacketConnectionFunction);
|
| + dbus::MessageWriter writer(&method_call);
|
| + writer.AppendString(ip_connection);
|
| + helper_->CallVoidMethodWithErrorCallback(&method_call,
|
| + callback,
|
| + error_callback);
|
| + }
|
| +
|
| + virtual void RemoveAllWakeOnPacketConnections(
|
| + const base::Closure& callback,
|
| + const ErrorCallback& error_callback) OVERRIDE {
|
| + dbus::MethodCall method_call(
|
| + shill::kFlimflamManagerInterface,
|
| + shill::kRemoveAllWakeOnPacketConnectionsFunction);
|
| + dbus::MessageWriter writer(&method_call);
|
| + helper_->CallVoidMethodWithErrorCallback(&method_call,
|
| + callback,
|
| + error_callback);
|
| + }
|
| +
|
| virtual TestInterface* GetTestInterface() OVERRIDE {
|
| return NULL;
|
| }
|
|
|