| Index: chromeos/dbus/shill_profile_client.cc
|
| diff --git a/chromeos/dbus/shill_profile_client.cc b/chromeos/dbus/shill_profile_client.cc
|
| index a86ff785cce6526e8b947cf323de98af35445efe..511a22e88bb782bdf46beb06f2e70816e0538884 100644
|
| --- a/chromeos/dbus/shill_profile_client.cc
|
| +++ b/chromeos/dbus/shill_profile_client.cc
|
| @@ -20,12 +20,10 @@ namespace chromeos {
|
|
|
| namespace {
|
|
|
| -// The ShillProfileClient implementation.
|
| class ShillProfileClientImpl : public ShillProfileClient {
|
| public:
|
| explicit ShillProfileClientImpl(dbus::Bus* bus);
|
|
|
| - /////////////////////////////////////
|
| // ShillProfileClient overrides.
|
| virtual void AddPropertyChangedObserver(
|
| const dbus::ObjectPath& profile_path,
|
| @@ -51,6 +49,10 @@ class ShillProfileClientImpl : public ShillProfileClient {
|
| const base::Closure& callback,
|
| const ErrorCallback& error_callback) OVERRIDE;
|
|
|
| + virtual TestInterface* GetTestInterface() OVERRIDE {
|
| + return NULL;
|
| + }
|
| +
|
| private:
|
| typedef std::map<std::string, ShillClientHelper*> HelperMap;
|
|
|
|
|