| Index: chromeos/dbus/flimflam_client_unittest_base.h
|
| diff --git a/chromeos/dbus/flimflam_client_unittest_base.h b/chromeos/dbus/flimflam_client_unittest_base.h
|
| index f8c7947324995f60fbfd2d923552e3d856ac3aeb..3fadcf7e30421ee84a4bc046ac5eeefe86f3ee79 100644
|
| --- a/chromeos/dbus/flimflam_client_unittest_base.h
|
| +++ b/chromeos/dbus/flimflam_client_unittest_base.h
|
| @@ -34,7 +34,8 @@ namespace chromeos {
|
| // A class to provide functionalities needed for testing Flimflam D-Bus clients.
|
| class FlimflamClientUnittestBase : public testing::Test {
|
| public:
|
| - explicit FlimflamClientUnittestBase(const std::string& interface_name);
|
| + explicit FlimflamClientUnittestBase(const std::string& interface_name,
|
| + const dbus::ObjectPath& object_path);
|
| virtual ~FlimflamClientUnittestBase();
|
|
|
| virtual void SetUp() OVERRIDE;
|
| @@ -112,6 +113,8 @@ class FlimflamClientUnittestBase : public testing::Test {
|
|
|
| // The interface name.
|
| const std::string interface_name_;
|
| + // The object path.
|
| + const dbus::ObjectPath object_path_;
|
| // The mock object proxy.
|
| scoped_refptr<dbus::MockObjectProxy> mock_proxy_;
|
| // The PropertyChanged signal handler given by the tested client.
|
|
|