| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_ | 5 #ifndef NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_ |
| 6 #define NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_ | 6 #define NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "net/base/completion_callback.h" | 11 #include "net/base/completion_callback.h" |
| 12 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
| 13 #include "net/url_request/url_request_job.h" | 13 #include "net/url_request/url_range_request_job.h" |
| 14 | 14 |
| 15 namespace net { | 15 namespace net { |
| 16 | 16 |
| 17 class URLRequest; | 17 class URLRequest; |
| 18 | 18 |
| 19 class NET_EXPORT URLRequestSimpleJob : public URLRequestJob { | 19 class NET_EXPORT URLRequestSimpleJob : public URLRangeRequestJob { |
| 20 public: | 20 public: |
| 21 URLRequestSimpleJob(URLRequest* request, NetworkDelegate* network_delegate); | 21 URLRequestSimpleJob(URLRequest* request, NetworkDelegate* network_delegate); |
| 22 | 22 |
| 23 virtual void Start() OVERRIDE; | 23 virtual void Start() OVERRIDE; |
| 24 virtual bool ReadRawData(IOBuffer* buf, | 24 virtual bool ReadRawData(IOBuffer* buf, |
| 25 int buf_size, | 25 int buf_size, |
| 26 int *bytes_read) OVERRIDE; | 26 int *bytes_read) OVERRIDE; |
| 27 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; | 27 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; |
| 28 virtual bool GetCharset(std::string* charset) OVERRIDE; | 28 virtual bool GetCharset(std::string* charset) OVERRIDE; |
| 29 | 29 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 44 std::string* charset, | 44 std::string* charset, |
| 45 std::string* data, | 45 std::string* data, |
| 46 const CompletionCallback& callback) const = 0; | 46 const CompletionCallback& callback) const = 0; |
| 47 | 47 |
| 48 protected: | 48 protected: |
| 49 void StartAsync(); | 49 void StartAsync(); |
| 50 | 50 |
| 51 private: | 51 private: |
| 52 void OnGetDataCompleted(int result); | 52 void OnGetDataCompleted(int result); |
| 53 | 53 |
| 54 HttpByteRange byte_range_; |
| 54 std::string mime_type_; | 55 std::string mime_type_; |
| 55 std::string charset_; | 56 std::string charset_; |
| 56 std::string data_; | 57 std::string data_; |
| 57 int data_offset_; | 58 int data_offset_; |
| 58 base::WeakPtrFactory<URLRequestSimpleJob> weak_factory_; | 59 base::WeakPtrFactory<URLRequestSimpleJob> weak_factory_; |
| 59 }; | 60 }; |
| 60 | 61 |
| 61 } // namespace net | 62 } // namespace net |
| 62 | 63 |
| 63 #endif // NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_ | 64 #endif // NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_ |
| OLD | NEW |