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

Unified Diff: webkit/glue/resource_loader_bridge.h

Issue 7276: Adding security info to canceled requests (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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
Index: webkit/glue/resource_loader_bridge.h
===================================================================
--- webkit/glue/resource_loader_bridge.h (revision 9948)
+++ webkit/glue/resource_loader_bridge.h (working copy)
@@ -91,7 +91,8 @@
// Called when the response is complete. This method signals completion of
// the resource load.
- virtual void OnCompletedRequest(const URLRequestStatus& status) = 0;
+ virtual void OnCompletedRequest(const URLRequestStatus& status,
+ const std::string& security_info) = 0;
darin (slow to review) 2009/03/04 19:29:01 so, iirc, we echo the security_info here in case O
jcampan 2009/03/04 22:33:43 That's right, if the load of a resource failed we
// Returns the URL of the request, which allows us to display it in
// debugging situations.

Powered by Google App Engine
This is Rietveld 408576698