Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Unified Diff: chromeos/dbus/shill_manager_client_stub.cc

Issue 16915006: Convert most of extensions and some other random stuff to using the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698