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

Unified Diff: net/url_request/url_request_http_job.cc

Issue 1135373002: Updated NetLog::ParametersCallback & all related calbacks returning value as scoped_ptr<base::Value… Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « net/url_request/url_request.cc ('k') | net/url_request/url_request_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_http_job.cc
diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc
index a25afcb2baa5651dd0b3fae40186fcce4f0d5a9c..61c2ec00339c8cefee649e77662d58ff3eb0a39b 100644
--- a/net/url_request/url_request_http_job.cc
+++ b/net/url_request/url_request_http_job.cc
@@ -328,7 +328,7 @@ void URLRequestHttpJob::NotifyHeadersComplete() {
SdchManager::SdchErrorRecovery(rv);
request()->net_log().AddEvent(
NetLog::TYPE_SDCH_DECODING_ERROR,
- base::Bind(&NetLogSdchResourceProblemCallback, rv));
+ base::Bind(NetLogSdchResourceProblemCallback, rv));
}
} else {
const std::string name = "Get-Dictionary";
@@ -352,7 +352,7 @@ void URLRequestHttpJob::NotifyHeadersComplete() {
SdchManager::SdchErrorRecovery(rv);
request_->net_log().AddEvent(
NetLog::TYPE_SDCH_DICTIONARY_ERROR,
- base::Bind(&NetLogSdchDictionaryFetchProblemCallback, rv,
+ base::Bind(NetLogSdchDictionaryFetchProblemCallback, rv,
sdch_dictionary_url, false));
}
}
@@ -545,7 +545,7 @@ void URLRequestHttpJob::AddExtraHeaders() {
SdchManager::SdchErrorRecovery(rv);
request()->net_log().AddEvent(
NetLog::TYPE_SDCH_DECODING_ERROR,
- base::Bind(&NetLogSdchResourceProblemCallback, rv));
+ base::Bind(NetLogSdchResourceProblemCallback, rv));
}
}
}
« no previous file with comments | « net/url_request/url_request.cc ('k') | net/url_request/url_request_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698