| Index: chromeos/dbus/fake_shill_profile_client.h
|
| diff --git a/chromeos/dbus/fake_shill_profile_client.h b/chromeos/dbus/fake_shill_profile_client.h
|
| index 9353f50f26416387f5bb33cdebf3cd4ec84be9df..65c8417105cc75701f0803cfa2519d0911fd651c 100644
|
| --- a/chromeos/dbus/fake_shill_profile_client.h
|
| +++ b/chromeos/dbus/fake_shill_profile_client.h
|
| @@ -53,12 +53,22 @@ class CHROMEOS_EXPORT FakeShillProfileClient :
|
| const base::DictionaryValue& properties) OVERRIDE;
|
| virtual bool AddService(const std::string& profile_path,
|
| const std::string& service_path) OVERRIDE;
|
| + virtual bool UpdateService(const std::string& profile_path,
|
| + const std::string& service_path) OVERRIDE;
|
| virtual void GetProfilePaths(std::vector<std::string>* profiles) OVERRIDE;
|
| + virtual bool GetService(const std::string& service_path,
|
| + std::string* profile_path,
|
| + base::DictionaryValue* properties) OVERRIDE;
|
| + virtual void ClearProfiles() OVERRIDE;
|
|
|
| private:
|
| struct ProfileProperties;
|
| typedef std::map<std::string, ProfileProperties*> ProfileMap;
|
|
|
| + bool AddOrUpdateServiceImpl(const std::string& profile_path,
|
| + const std::string& service_path,
|
| + ProfileProperties* profile);
|
| +
|
| ProfileProperties* GetProfile(const dbus::ObjectPath& profile_path,
|
| const ErrorCallback& error_callback);
|
|
|
|
|