| Index: chrome/browser/renderer_host/resource_handler.h
|
| ===================================================================
|
| --- chrome/browser/renderer_host/resource_handler.h (revision 9948)
|
| +++ chrome/browser/renderer_host/resource_handler.h (working copy)
|
| @@ -12,6 +12,8 @@
|
| #ifndef CHROME_BROWSER_RENDERER_HOST_RESOURCE_HANDLER_H_
|
| #define CHROME_BROWSER_RENDERER_HOST_RESOURCE_HANDLER_H_
|
|
|
| +#include <string>
|
| +
|
| #include "base/basictypes.h"
|
| #include "base/ref_counted.h"
|
| #include "chrome/common/filter_policy.h"
|
| @@ -82,7 +84,8 @@
|
| // The response is complete. The final response status is given.
|
| // Returns false if the handler is deferring the call to a later time.
|
| virtual bool OnResponseCompleted(int request_id,
|
| - const URLRequestStatus& status) = 0;
|
| + const URLRequestStatus& status,
|
| + const std::string& security_info) = 0;
|
| };
|
|
|
| #endif // CHROME_BROWSER_RENDERER_HOST_RESOURCE_HANDLER_H_
|
|
|