| Index: chromeos/dbus/shill_manager_client.h
|
| diff --git a/chromeos/dbus/shill_manager_client.h b/chromeos/dbus/shill_manager_client.h
|
| index a128b469748609dbad202f10859575f18ec431e3..d72a7d64f1b6d7ea5d9052cc8baf2be70f0bfbad 100644
|
| --- a/chromeos/dbus/shill_manager_client.h
|
| +++ b/chromeos/dbus/shill_manager_client.h
|
| @@ -68,6 +68,19 @@ class CHROMEOS_EXPORT ShillManagerClient : public DBusClient {
|
| // Services are sorted first by Active vs. Inactive State, then by Type.
|
| virtual void SortManagerServices() = 0;
|
|
|
| + // Sets up the default fake environment based on default initial states
|
| + // or states provided by the command line.
|
| + virtual void SetupDefaultEnvironment() = 0;
|
| +
|
| + // Returns the interactive delay specified on the command line, 0 for none.
|
| + virtual int GetInteractiveDelay() const = 0;
|
| +
|
| + // Returns the initial state value for the default network matching |type|.
|
| + // Note: these do not map directly to Service.State values, see
|
| + // FakeShillManagerClient::ParseOption for details. Defaults to
|
| + // shill::kStateOffline (unavailable).
|
| + virtual std::string GetInitialState(const std::string& type) const = 0;
|
| +
|
| protected:
|
| virtual ~TestInterface() {}
|
| };
|
|
|