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

Unified Diff: webkit/appcache/appcache_url_request_job.cc

Issue 10542153: NetLogEventParameter to Callback refactoring 11. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Response to comments Created 8 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 | « net/base/net_log.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_url_request_job.cc
===================================================================
--- webkit/appcache/appcache_url_request_job.cc (revision 142108)
+++ webkit/appcache/appcache_url_request_job.cc (working copy)
@@ -90,7 +90,7 @@
case ERROR_DELIVERY:
request()->net_log().AddEvent(
- net::NetLog::TYPE_APPCACHE_DELIVERING_ERROR_RESPONSE, NULL);
+ net::NetLog::TYPE_APPCACHE_DELIVERING_ERROR_RESPONSE);
NotifyStartError(net::URLRequestStatus(net::URLRequestStatus::FAILED,
net::ERR_FAILED));
break;
@@ -99,8 +99,7 @@
request()->net_log().AddEvent(
is_fallback_ ?
net::NetLog::TYPE_APPCACHE_DELIVERING_FALLBACK_RESPONSE :
- net::NetLog::TYPE_APPCACHE_DELIVERING_CACHED_RESPONSE,
- NULL);
+ net::NetLog::TYPE_APPCACHE_DELIVERING_CACHED_RESPONSE);
storage_->LoadResponseInfo(
manifest_url_, group_id_, entry_.response_id(), this);
break;
« no previous file with comments | « net/base/net_log.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698