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

Unified Diff: chrome/browser/devtools/port_forwarding_controller.cc

Issue 106433007: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years 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 | « chrome/browser/devtools/devtools_window.cc ('k') | chrome/browser/diagnostics/recon_diagnostics.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/devtools/port_forwarding_controller.cc
diff --git a/chrome/browser/devtools/port_forwarding_controller.cc b/chrome/browser/devtools/port_forwarding_controller.cc
index a733851ced2a219cb70da651eb1a6551171da441..627030eaad37573f2641f3c83f0c564555f38038 100644
--- a/chrome/browser/devtools/port_forwarding_controller.cc
+++ b/chrome/browser/devtools/port_forwarding_controller.cc
@@ -358,9 +358,10 @@ void PortForwardingController::Connection::OnPrefsChange() {
bool enabled =
pref_service->GetBoolean(prefs::kDevToolsPortForwardingEnabled);
if (enabled) {
- const DictionaryValue* dict =
+ const base::DictionaryValue* dict =
pref_service->GetDictionary(prefs::kDevToolsPortForwardingConfig);
- for (DictionaryValue::Iterator it(*dict); !it.IsAtEnd(); it.Advance()) {
+ for (base::DictionaryValue::Iterator it(*dict);
+ !it.IsAtEnd(); it.Advance()) {
int port_num;
std::string location;
if (base::StringToInt(it.key(), &port_num) &&
@@ -541,7 +542,7 @@ bool PortForwardingController::Connection::ProcessIncomingMessage(
if (notification->method() != kTetheringAccepted)
return false;
- DictionaryValue* params = notification->params();
+ base::DictionaryValue* params = notification->params();
if (!params)
return false;
« no previous file with comments | « chrome/browser/devtools/devtools_window.cc ('k') | chrome/browser/diagnostics/recon_diagnostics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698