| Index: chromeos/dbus/shill_manager_client.h
|
| diff --git a/chromeos/dbus/shill_manager_client.h b/chromeos/dbus/shill_manager_client.h
|
| index bd05253ed91ba3aa54b34d63f2f38410f321426c..b4d39f62ddcc3fc79b0b9bee90830e2f82c6cc88 100644
|
| --- a/chromeos/dbus/shill_manager_client.h
|
| +++ b/chromeos/dbus/shill_manager_client.h
|
| @@ -11,7 +11,9 @@
|
| #include "base/callback.h"
|
| #include "chromeos/chromeos_export.h"
|
| #include "chromeos/dbus/dbus_client_implementation_type.h"
|
| +#include "chromeos/dbus/dbus_method_call_status.h"
|
| #include "chromeos/dbus/shill_client_helper.h"
|
| +#include "dbus/object_path.h"
|
|
|
| namespace dbus {
|
|
|
| @@ -123,6 +125,14 @@ class CHROMEOS_EXPORT ShillManagerClient {
|
| const ObjectPathCallback& callback,
|
| const ErrorCallback& error_callback) = 0;
|
|
|
| + // Calls ConfigureServiceForProfile method.
|
| + // |callback| is called with the created service if the method call succeeds.
|
| + virtual void ConfigureServiceForProfile(
|
| + const dbus::ObjectPath& profile_path,
|
| + const base::DictionaryValue& properties,
|
| + const ObjectPathCallback& callback,
|
| + const ErrorCallback& error_callback) = 0;
|
| +
|
| // Calls GetService method.
|
| // |callback| is called after the method call succeeds.
|
| virtual void GetService(const base::DictionaryValue& properties,
|
|
|