Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: net/url_request/url_fetcher_impl.h

Issue 1502503004: Remove kuint64max. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kint8
Patch Set: rebase, fixes Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 // This file contains URLFetcher, a wrapper around URLRequest that handles 5 // This file contains URLFetcher, a wrapper around URLRequest that handles
6 // low-level details like thread safety, ref counting, and incremental buffer 6 // low-level details like thread safety, ref counting, and incremental buffer
7 // reading. This is useful for callers who simply want to get the data from a 7 // reading. This is useful for callers who simply want to get the data from a
8 // URL and don't care about all the nitty-gritty details. 8 // URL and don't care about all the nitty-gritty details.
9 // 9 //
10 // NOTE(willchan): Only one "IO" thread is supported for URLFetcher. This is a 10 // NOTE(willchan): Only one "IO" thread is supported for URLFetcher. This is a
11 // temporary situation. We will work on allowing support for multiple "io" 11 // temporary situation. We will work on allowing support for multiple "io"
12 // threads per process. 12 // threads per process.
13 13
14 #ifndef NET_URL_REQUEST_URL_FETCHER_IMPL_H_ 14 #ifndef NET_URL_REQUEST_URL_FETCHER_IMPL_H_
15 #define NET_URL_REQUEST_URL_FETCHER_IMPL_H_ 15 #define NET_URL_REQUEST_URL_FETCHER_IMPL_H_
16 16
17 #include <stdint.h> 17 #include <stdint.h>
18 18
19 #include <string> 19 #include <string>
20 20
21 #include "base/basictypes.h" 21 #include "base/basictypes.h"
22 #include "base/compiler_specific.h" 22 #include "base/compiler_specific.h"
mmenke 2015/12/07 16:45:10 Can remove both the above headers, and replace wit
Avi (use Gerrit) 2015/12/07 17:35:16 Done.
23 #include "net/base/net_export.h" 23 #include "net/base/net_export.h"
24 #include "net/url_request/url_fetcher.h" 24 #include "net/url_request/url_fetcher.h"
25 25
26 namespace net { 26 namespace net {
27 class URLFetcherCore; 27 class URLFetcherCore;
28 class URLFetcherDelegate; 28 class URLFetcherDelegate;
29 class URLFetcherFactory; 29 class URLFetcherFactory;
30 30
31 class NET_EXPORT_PRIVATE URLFetcherImpl : public URLFetcher { 31 class NET_EXPORT_PRIVATE URLFetcherImpl : public URLFetcher {
32 public: 32 public:
33 // |url| is the URL to send the request to. 33 // |url| is the URL to send the request to.
34 // |request_type| is the type of request to make. 34 // |request_type| is the type of request to make.
35 // |d| the object that will receive the callback on fetch completion. 35 // |d| the object that will receive the callback on fetch completion.
36 URLFetcherImpl(const GURL& url, 36 URLFetcherImpl(const GURL& url,
37 RequestType request_type, 37 RequestType request_type,
38 URLFetcherDelegate* d); 38 URLFetcherDelegate* d);
39 ~URLFetcherImpl() override; 39 ~URLFetcherImpl() override;
40 40
41 // URLFetcher implementation: 41 // URLFetcher implementation:
42 void SetUploadData(const std::string& upload_content_type, 42 void SetUploadData(const std::string& upload_content_type,
43 const std::string& upload_content) override; 43 const std::string& upload_content) override;
44 void SetUploadFilePath( 44 void SetUploadFilePath(
45 const std::string& upload_content_type, 45 const std::string& upload_content_type,
46 const base::FilePath& file_path, 46 const base::FilePath& file_path,
47 uint64 range_offset, 47 uint64_t range_offset,
48 uint64 range_length, 48 uint64_t range_length,
49 scoped_refptr<base::TaskRunner> file_task_runner) override; 49 scoped_refptr<base::TaskRunner> file_task_runner) override;
50 void SetUploadStreamFactory( 50 void SetUploadStreamFactory(
51 const std::string& upload_content_type, 51 const std::string& upload_content_type,
52 const CreateUploadStreamCallback& callback) override; 52 const CreateUploadStreamCallback& callback) override;
53 void SetChunkedUpload(const std::string& upload_content_type) override; 53 void SetChunkedUpload(const std::string& upload_content_type) override;
54 void AppendChunkToUpload(const std::string& data, 54 void AppendChunkToUpload(const std::string& data,
55 bool is_last_chunk) override; 55 bool is_last_chunk) override;
56 void SetLoadFlags(int load_flags) override; 56 void SetLoadFlags(int load_flags) override;
57 int GetLoadFlags() const override; 57 int GetLoadFlags() const override;
58 void SetReferrer(const std::string& referrer) override; 58 void SetReferrer(const std::string& referrer) override;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 static int GetNumFetcherCores(); 124 static int GetNumFetcherCores();
125 125
126 const scoped_refptr<URLFetcherCore> core_; 126 const scoped_refptr<URLFetcherCore> core_;
127 127
128 DISALLOW_COPY_AND_ASSIGN(URLFetcherImpl); 128 DISALLOW_COPY_AND_ASSIGN(URLFetcherImpl);
129 }; 129 };
130 130
131 } // namespace net 131 } // namespace net
132 132
133 #endif // NET_URL_REQUEST_URL_FETCHER_IMPL_H_ 133 #endif // NET_URL_REQUEST_URL_FETCHER_IMPL_H_
OLDNEW
« no previous file with comments | « net/quic/congestion_control/send_algorithm_simulator.cc ('k') | net/url_request/url_fetcher_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698