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

Unified Diff: net/base/capturing_net_log.cc

Issue 15662008: Make net and ipc explicitly use 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
« no previous file with comments | « ipc/ipc_message_utils.cc ('k') | net/base/file_stream_net_log_parameters.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/capturing_net_log.cc
diff --git a/net/base/capturing_net_log.cc b/net/base/capturing_net_log.cc
index f938931518aea28c320a03c977f3ed19a6e81724..c7c2516e4a8189717a778abfcb1ea52d84759d21 100644
--- a/net/base/capturing_net_log.cc
+++ b/net/base/capturing_net_log.cc
@@ -15,7 +15,7 @@ CapturingNetLog::CapturedEntry::CapturedEntry(
const base::TimeTicks& time,
Source source,
EventPhase phase,
- scoped_ptr<DictionaryValue> params)
+ scoped_ptr<base::DictionaryValue> params)
: type(type),
time(time),
source(source),
@@ -105,7 +105,7 @@ void CapturingNetLog::Observer::OnAddEntry(const net::NetLog::Entry& entry) {
// Using Dictionaries instead of Values makes checking values a little
// simpler.
- DictionaryValue* param_dict = NULL;
+ base::DictionaryValue* param_dict = NULL;
Value* param_value = entry.ParametersToValue();
if (param_value && !param_value->GetAsDictionary(&param_dict))
delete param_value;
@@ -117,7 +117,7 @@ void CapturingNetLog::Observer::OnAddEntry(const net::NetLog::Entry& entry) {
base::TimeTicks::Now(),
entry.source(),
entry.phase(),
- scoped_ptr<DictionaryValue>(param_dict)));
+ scoped_ptr<base::DictionaryValue>(param_dict)));
}
CapturingNetLog::CapturingNetLog() {
« no previous file with comments | « ipc/ipc_message_utils.cc ('k') | net/base/file_stream_net_log_parameters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698