| Index: net/url_request/url_request_simple_job.h
|
| diff --git a/net/url_request/url_request_simple_job.h b/net/url_request/url_request_simple_job.h
|
| index 877b0811a3d7dcb1be5d304d05ced05f61b7c737..7b48adb85dff048bd228b26b982af22f5cfb7570 100644
|
| --- a/net/url_request/url_request_simple_job.h
|
| +++ b/net/url_request/url_request_simple_job.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2006-2008 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,15 +11,15 @@
|
| #include "net/url_request/url_request_job.h"
|
|
|
| namespace net {
|
| +
|
| class URLRequest;
|
| -} // namespace net
|
|
|
| -class URLRequestSimpleJob : public net::URLRequestJob {
|
| +class URLRequestSimpleJob : public URLRequestJob {
|
| public:
|
| - explicit URLRequestSimpleJob(net::URLRequest* request);
|
| + explicit URLRequestSimpleJob(URLRequest* request);
|
|
|
| virtual void Start();
|
| - virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int *bytes_read);
|
| + virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
|
| virtual bool GetMimeType(std::string* mime_type) const;
|
| virtual bool GetCharset(std::string* charset);
|
|
|
| @@ -41,4 +41,6 @@ class URLRequestSimpleJob : public net::URLRequestJob {
|
| int data_offset_;
|
| };
|
|
|
| +} // namespace net
|
| +
|
| #endif // NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_
|
|
|