| Index: chrome/browser/renderer_host/resource_handler.h
 | 
| diff --git a/chrome/browser/renderer_host/resource_handler.h b/chrome/browser/renderer_host/resource_handler.h
 | 
| index bc05b17dcdf740e3a9443d45718f20cb88d2b536..c2314062a62dbffe376a496a23d2104772538ba0 100644
 | 
| --- a/chrome/browser/renderer_host/resource_handler.h
 | 
| +++ b/chrome/browser/renderer_host/resource_handler.h
 | 
| @@ -1,4 +1,4 @@
 | 
| -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
 | 
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| @@ -19,11 +19,11 @@
 | 
|  
 | 
|  namespace net {
 | 
|  class IOBuffer;
 | 
| -}
 | 
| +class URLRequestStatus;
 | 
| +}  // namespace net
 | 
|  
 | 
|  struct ResourceResponse;
 | 
|  class GURL;
 | 
| -class URLRequestStatus;
 | 
|  
 | 
|  // The resource dispatcher host uses this interface to push load events to the
 | 
|  // renderer, allowing for differences in the types of IPC messages generated.
 | 
| @@ -73,7 +73,7 @@ class ResourceHandler
 | 
|    // 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,
 | 
| +                                   const net::URLRequestStatus& status,
 | 
|                                     const std::string& security_info) = 0;
 | 
|  
 | 
|    // Signals that the request is closed (i.e. finished successfully, cancelled).
 | 
| 
 |