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

Unified Diff: chromeos/dbus/shill_ipconfig_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_ipconfig_client_stub.cc
diff --git a/chromeos/dbus/shill_ipconfig_client_stub.cc b/chromeos/dbus/shill_ipconfig_client_stub.cc
index 8bb28841e5db87c63011cce49c3f7475634fa0d0..a4ce27db9a87df463181900dfea12928283ba9c5 100644
--- a/chromeos/dbus/shill_ipconfig_client_stub.cc
+++ b/chromeos/dbus/shill_ipconfig_client_stub.cc
@@ -73,7 +73,7 @@ void ShillIPConfigClientStub::SetProperty(
dict->SetWithoutPathExpansion(name, value.DeepCopy());
} else {
// Create a new stub ipconfig object, and update its properties.
- DictionaryValue* dvalue = new DictionaryValue;
+ base::DictionaryValue* dvalue = new base::DictionaryValue;
dvalue->SetWithoutPathExpansion(name, value.DeepCopy());
ipconfigs_.SetWithoutPathExpansion(ipconfig_path.value(),
dvalue);

Powered by Google App Engine
This is Rietveld 408576698