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

Unified Diff: chromeos/network/cros_network_functions.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/network/certificate_pattern.cc ('k') | chromeos/network/device_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « chromeos/network/certificate_pattern.cc ('k') | chromeos/network/device_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698