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

Unified Diff: chromeos/network/cros_network_functions.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/network/cros_network_functions.cc
diff --git a/chromeos/network/cros_network_functions.cc b/chromeos/network/cros_network_functions.cc
index d3e52e74345977a4a74ed66ae469181f64a71062..68f3d2e290df0503c5916c763337c1305b470888 100644
--- a/chromeos/network/cros_network_functions.cc
+++ b/chromeos/network/cros_network_functions.cc
@@ -286,7 +286,7 @@ void ListIPConfigsCallback(const NetworkGetIPConfigsCallback& callback,
const base::DictionaryValue& properties) {
NetworkIPConfigVector ipconfig_vector;
std::string hardware_address;
- const ListValue* ips = NULL;
+ const base::ListValue* ips = NULL;
if (call_status != DBUS_METHOD_CALL_SUCCESS ||
!properties.GetListWithoutPathExpansion(flimflam::kIPConfigsProperty,
&ips)) {
@@ -627,7 +627,7 @@ bool CrosListIPConfigsAndBlock(const std::string& device_path,
if (!properties.get())
return false;
- ListValue* ips = NULL;
+ base::ListValue* ips = NULL;
if (!properties->GetListWithoutPathExpansion(
flimflam::kIPConfigsProperty, &ips))
return false;

Powered by Google App Engine
This is Rietveld 408576698