| Index: chromeos/dbus/shill_manager_client_stub.cc
|
| diff --git a/chromeos/dbus/shill_manager_client_stub.cc b/chromeos/dbus/shill_manager_client_stub.cc
|
| index b9950f25c7a4bed441ca329bcb59a547d8caf68f..307c58912806c1aad43760691b2b08089087dc7a 100644
|
| --- a/chromeos/dbus/shill_manager_client_stub.cc
|
| +++ b/chromeos/dbus/shill_manager_client_stub.cc
|
| @@ -28,11 +28,11 @@ namespace {
|
| // Used to compare values for finding entries to erase in a ListValue.
|
| // (ListValue only implements a const_iterator version of Find).
|
| struct ValueEquals {
|
| - explicit ValueEquals(const Value* first) : first_(first) {}
|
| - bool operator()(const Value* second) const {
|
| + explicit ValueEquals(const base::Value* first) : first_(first) {}
|
| + bool operator()(const base::Value* second) const {
|
| return first_->Equals(second);
|
| }
|
| - const Value* first_;
|
| + const base::Value* first_;
|
| };
|
|
|
| } // namespace
|
|
|