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

Unified Diff: net/base/net_log.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 | « media/base/media_log_event.h ('k') | net/cert/crl_set.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_log.cc
diff --git a/net/base/net_log.cc b/net/base/net_log.cc
index b1ec72f21937a4d305e42738f2eb4992a6fa6698..14f485e550083fe258dc0c51e4373deb8a8c4a45 100644
--- a/net/base/net_log.cc
+++ b/net/base/net_log.cc
@@ -99,7 +99,8 @@ NetLog::ParametersCallback NetLog::Source::ToEventParametersCallback() const {
}
// static
-bool NetLog::Source::FromEventParameters(Value* event_params, Source* source) {
+bool NetLog::Source::FromEventParameters(base::Value* event_params,
+ Source* source) {
base::DictionaryValue* dict;
base::DictionaryValue* source_dict;
int source_id;
@@ -136,7 +137,7 @@ base::Value* NetLog::Entry::ToValue() const {
// Set the event-specific parameters.
if (parameters_callback_) {
- Value* value = parameters_callback_->Run(log_level_);
+ base::Value* value = parameters_callback_->Run(log_level_);
if (value)
entry_dict->Set("params", value);
}
« no previous file with comments | « media/base/media_log_event.h ('k') | net/cert/crl_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698