| Index: chromeos/dbus/shill_profile_client.h
|
| diff --git a/chromeos/dbus/flimflam_profile_client.h b/chromeos/dbus/shill_profile_client.h
|
| similarity index 75%
|
| rename from chromeos/dbus/flimflam_profile_client.h
|
| rename to chromeos/dbus/shill_profile_client.h
|
| index 85f74a3ea6eabcb7b1772941299f14a0d3ead290..47e786a76f3b6c5917f454cfc5e0313e1eaeab38 100644
|
| --- a/chromeos/dbus/flimflam_profile_client.h
|
| +++ b/chromeos/dbus/shill_profile_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_PROFILE_CLIENT_H_
|
| -#define CHROMEOS_DBUS_FLIMFLAM_PROFILE_CLIENT_H_
|
| +#ifndef CHROMEOS_DBUS_SHILL_PROFILE_CLIENT_H_
|
| +#define CHROMEOS_DBUS_SHILL_PROFILE_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 base {
|
|
|
| @@ -29,19 +29,19 @@ class ObjectPath;
|
|
|
| namespace chromeos {
|
|
|
| -// FlimflamProfileClient is used to communicate with the Flimflam Profile
|
| +// ShillProfileClient is used to communicate with the Shill Profile
|
| // service. All methods should be called from the origin thread which
|
| // initializes the DBusThreadManager instance.
|
| -class CHROMEOS_EXPORT FlimflamProfileClient {
|
| +class CHROMEOS_EXPORT ShillProfileClient {
|
| public:
|
| - typedef FlimflamClientHelper::PropertyChangedHandler PropertyChangedHandler;
|
| - typedef FlimflamClientHelper::DictionaryValueCallback DictionaryValueCallback;
|
| + typedef ShillClientHelper::PropertyChangedHandler PropertyChangedHandler;
|
| + typedef ShillClientHelper::DictionaryValueCallback DictionaryValueCallback;
|
|
|
| - virtual ~FlimflamProfileClient();
|
| + virtual ~ShillProfileClient();
|
|
|
| // Factory function, creates a new instance which is owned by the caller.
|
| // For normal usage, access the singleton via DBusThreadManager::Get().
|
| - static FlimflamProfileClient* Create(DBusClientImplementationType type,
|
| + static ShillProfileClient* Create(DBusClientImplementationType type,
|
| dbus::Bus* bus);
|
|
|
| // Sets PropertyChanged signal handler.
|
| @@ -72,12 +72,12 @@ class CHROMEOS_EXPORT FlimflamProfileClient {
|
|
|
| protected:
|
| // Create() should be used instead.
|
| - FlimflamProfileClient();
|
| + ShillProfileClient();
|
|
|
| private:
|
| - DISALLOW_COPY_AND_ASSIGN(FlimflamProfileClient);
|
| + DISALLOW_COPY_AND_ASSIGN(ShillProfileClient);
|
| };
|
|
|
| } // namespace chromeos
|
|
|
| -#endif // CHROMEOS_DBUS_FLIMFLAM_PROFILE_CLIENT_H_
|
| +#endif // CHROMEOS_DBUS_SHILL_PROFILE_CLIENT_H_
|
|
|