| Index: chromeos/dbus/fake_shill_manager_client.h
|
| diff --git a/chromeos/dbus/fake_shill_manager_client.h b/chromeos/dbus/fake_shill_manager_client.h
|
| index 57b3a75fa141f060d3cbe29b8c00922c58a7bab0..2a4913ff03130b889cf1dcb852fb6a1d7db2b070 100644
|
| --- a/chromeos/dbus/fake_shill_manager_client.h
|
| +++ b/chromeos/dbus/fake_shill_manager_client.h
|
| @@ -5,10 +5,12 @@
|
| #ifndef CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_
|
| #define CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/callback.h"
|
| #include "base/macros.h"
|
| +#include "base/values.h"
|
| #include "chromeos/chromeos_export.h"
|
| #include "chromeos/dbus/shill_manager_client.h"
|
|
|
| @@ -117,7 +119,8 @@ class CHROMEOS_EXPORT FakeShillManagerClient
|
| void SetTechnologyEnabled(const std::string& type,
|
| const base::Closure& callback,
|
| bool enabled);
|
| - base::ListValue* GetEnabledServiceList(const std::string& property) const;
|
| + std::unique_ptr<base::ListValue> GetEnabledServiceList(
|
| + const std::string& property) const;
|
| void ScanCompleted(const std::string& device_path,
|
| const base::Closure& callback);
|
|
|
|
|