Chromium Code Reviews| Index: webkit/glue/resource_loader_bridge.h |
| diff --git a/webkit/glue/resource_loader_bridge.h b/webkit/glue/resource_loader_bridge.h |
| index 70db933767cda47e9f01be9c883245708b7aa6b3..f0db1eebd142643e2068bfaba57b99621a0b5248 100644 |
| --- a/webkit/glue/resource_loader_bridge.h |
| +++ b/webkit/glue/resource_loader_bridge.h |
| @@ -274,8 +274,8 @@ class ResourceLoaderBridge { |
| SyncLoadResponse(); |
| ~SyncLoadResponse(); |
| - // The response status. |
| - net::URLRequestStatus status; |
| + // The response error code. |
| + int error_code; |
| // The final URL of the response. This may differ from the request URL in |
| // the case of a server redirect. |
| @@ -334,9 +334,10 @@ class ResourceLoaderBridge { |
| virtual void OnReceivedCachedMetadata(const char* data, int len) { } |
| // Called when the response is complete. This method signals completion of |
| - // the resource load.ff |
| + // the resource load. |
| virtual void OnCompletedRequest( |
| - const net::URLRequestStatus& status, |
| + int error_code, |
| + bool is_handled_externally, |
|
darin (slow to review)
2012/08/10 18:03:02
nit: was_handled_externally
mkosiba (inactive)
2012/08/29 15:53:01
changed to 'ignored'.
|
| const std::string& security_info, |
| const base::TimeTicks& completion_time) = 0; |