diff options
Diffstat (limited to 'net/base/net_log.cc')
-rw-r--r-- | net/base/net_log.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/base/net_log.cc b/net/base/net_log.cc index d6b6f39..12cfd81 100644 --- a/net/base/net_log.cc +++ b/net/base/net_log.cc @@ -64,7 +64,7 @@ Value* NetLogStringCallback(const char* name, } Value* NetLogString16Callback(const char* name, - const string16* value, + const base::string16* value, NetLog::LogLevel /* log_level */) { DictionaryValue* event_params = new DictionaryValue(); event_params->SetString(name, *value); @@ -296,7 +296,7 @@ NetLog::ParametersCallback NetLog::StringCallback(const char* name, // static NetLog::ParametersCallback NetLog::StringCallback(const char* name, - const string16* value) { + const base::string16* value) { DCHECK(value); return base::Bind(&NetLogString16Callback, name, value); } |