| Index: chromeos/dbus/shill_service_client_stub.h
|
| diff --git a/chromeos/dbus/shill_service_client_stub.h b/chromeos/dbus/shill_service_client_stub.h
|
| index d248494a4952239268f934a474265b0f6bf083e5..de9d7b27d52eb86e2c2e98858c287fab1f235614 100644
|
| --- a/chromeos/dbus/shill_service_client_stub.h
|
| +++ b/chromeos/dbus/shill_service_client_stub.h
|
| @@ -73,6 +73,12 @@ class ShillServiceClientStub : public ShillServiceClient,
|
| const std::string& type,
|
| const std::string& state,
|
| bool add_to_watch_list) OVERRIDE;
|
| + virtual void AddServiceWithIPConfig(const std::string& service_path,
|
| + const std::string& name,
|
| + const std::string& type,
|
| + const std::string& state,
|
| + const std::string& ipconfig_path,
|
| + bool add_to_watch_list) OVERRIDE;
|
| virtual void RemoveService(const std::string& service_path) OVERRIDE;
|
| virtual void SetServiceProperty(const std::string& service_path,
|
| const std::string& property,
|
| @@ -84,6 +90,12 @@ class ShillServiceClientStub : public ShillServiceClient,
|
| private:
|
| typedef ObserverList<ShillPropertyChangedObserver> PropertyObserverList;
|
|
|
| + void AddServiceInternal(const std::string& service_path,
|
| + const std::string& name,
|
| + const std::string& type,
|
| + const std::string& state,
|
| + const std::string& ipconfig_path,
|
| + bool add_to_watch_list);
|
| void SetDefaultProperties();
|
| void PassStubServiceProperties(const dbus::ObjectPath& service_path,
|
| const DictionaryValueCallback& callback);
|
|
|