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

Unified Diff: chromeos/dbus/shill_manager_client_stub.cc

Issue 17034006: Add base namespace to more values in sync and elsewhere. (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
« no previous file with comments | « chromeos/dbus/shill_ipconfig_client_stub.cc ('k') | chromeos/network/certificate_pattern.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chromeos/dbus/shill_ipconfig_client_stub.cc ('k') | chromeos/network/certificate_pattern.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698