Chromium Code Reviews| 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. |