| Index: net/url_request/url_request_data_job.h
 | 
| diff --git a/net/url_request/url_request_data_job.h b/net/url_request/url_request_data_job.h
 | 
| index 1bb868aaafe9cf780df4e7439602eaff28be8e63..7171088e2efa4a33f476bdff71a1a61ba07e2c33 100644
 | 
| --- a/net/url_request/url_request_data_job.h
 | 
| +++ b/net/url_request/url_request_data_job.h
 | 
| @@ -1,4 +1,4 @@
 | 
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved.
 | 
| +// Copyright (c) 2010 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.
 | 
|  
 | 
| @@ -11,17 +11,19 @@
 | 
|  #include "net/url_request/url_request.h"
 | 
|  #include "net/url_request/url_request_simple_job.h"
 | 
|  
 | 
| +namespace net {
 | 
|  class URLRequest;
 | 
| +}  // namespace net
 | 
|  
 | 
|  class URLRequestDataJob : public URLRequestSimpleJob {
 | 
|   public:
 | 
| -  explicit URLRequestDataJob(URLRequest* request);
 | 
| +  explicit URLRequestDataJob(net::URLRequest* request);
 | 
|  
 | 
|    virtual bool GetData(std::string* mime_type,
 | 
|                         std::string* charset,
 | 
|                         std::string* data) const;
 | 
|  
 | 
| -  static URLRequest::ProtocolFactory Factory;
 | 
| +  static net::URLRequest::ProtocolFactory Factory;
 | 
|  
 | 
|   private:
 | 
|    ~URLRequestDataJob();
 | 
| @@ -30,4 +32,3 @@ class URLRequestDataJob : public URLRequestSimpleJob {
 | 
|  };
 | 
|  
 | 
|  #endif  // NET_URL_REQUEST_URL_REQUEST_DATA_JOB_H_
 | 
| -
 | 
| 
 |