| Index: chromeos/dbus/shill_manager_client.h
|
| diff --git a/chromeos/dbus/flimflam_manager_client.h b/chromeos/dbus/shill_manager_client.h
|
| similarity index 81%
|
| rename from chromeos/dbus/flimflam_manager_client.h
|
| rename to chromeos/dbus/shill_manager_client.h
|
| index 98cb9cfd4b36259e5c5c8c657489da9864378f8e..cc2117498af5158838e8952d8c274a58f66b6392 100644
|
| --- a/chromeos/dbus/flimflam_manager_client.h
|
| +++ b/chromeos/dbus/shill_manager_client.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROMEOS_DBUS_FLIMFLAM_MANAGER_CLIENT_H_
|
| -#define CHROMEOS_DBUS_FLIMFLAM_MANAGER_CLIENT_H_
|
| +#ifndef CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_
|
| +#define CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_
|
|
|
| #include <string>
|
|
|
| @@ -11,7 +11,7 @@
|
| #include "base/callback.h"
|
| #include "chromeos/chromeos_export.h"
|
| #include "chromeos/dbus/dbus_client_implementation_type.h"
|
| -#include "chromeos/dbus/flimflam_client_helper.h"
|
| +#include "chromeos/dbus/shill_client_helper.h"
|
|
|
| namespace dbus {
|
|
|
| @@ -21,19 +21,19 @@ class Bus;
|
|
|
| namespace chromeos {
|
|
|
| -// FlimflamManagerClient is used to communicate with the Flimflam Manager
|
| +// ShillManagerClient is used to communicate with the Shill Manager
|
| // service. All methods should be called from the origin thread which
|
| // initializes the DBusThreadManager instance.
|
| -class CHROMEOS_EXPORT FlimflamManagerClient {
|
| +class CHROMEOS_EXPORT ShillManagerClient {
|
| public:
|
| - typedef FlimflamClientHelper::PropertyChangedHandler PropertyChangedHandler;
|
| - typedef FlimflamClientHelper::DictionaryValueCallback DictionaryValueCallback;
|
| + typedef ShillClientHelper::PropertyChangedHandler PropertyChangedHandler;
|
| + typedef ShillClientHelper::DictionaryValueCallback DictionaryValueCallback;
|
|
|
| - virtual ~FlimflamManagerClient();
|
| + virtual ~ShillManagerClient();
|
|
|
| // Factory function, creates a new instance which is owned by the caller.
|
| // For normal usage, access the singleton via DBusThreadManager::Get().
|
| - static FlimflamManagerClient* Create(DBusClientImplementationType type,
|
| + static ShillManagerClient* Create(DBusClientImplementationType type,
|
| dbus::Bus* bus);
|
|
|
| // Sets PropertyChanged signal handler.
|
| @@ -88,12 +88,12 @@ class CHROMEOS_EXPORT FlimflamManagerClient {
|
|
|
| protected:
|
| // Create() should be used instead.
|
| - FlimflamManagerClient();
|
| + ShillManagerClient();
|
|
|
| private:
|
| - DISALLOW_COPY_AND_ASSIGN(FlimflamManagerClient);
|
| + DISALLOW_COPY_AND_ASSIGN(ShillManagerClient);
|
| };
|
|
|
| } // namespace chromeos
|
|
|
| -#endif // CHROMEOS_DBUS_FLIMFLAM_MANAGER_CLIENT_H_
|
| +#endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_
|
|
|