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

Side by Side Diff: components/cronet/android/wrapped_channel_upload_element_reader.cc

Issue 2361413002: Obliterate legacy cronet API. All of its users have been migrated. (Closed)
Patch Set: Created 4 years, 2 months 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
« no previous file with comments | « components/cronet/android/wrapped_channel_upload_element_reader.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/cronet/android/wrapped_channel_upload_element_reader.h"
6
7 #include "base/android/jni_android.h"
8 #include "base/logging.h"
9 #include "net/base/io_buffer.h"
10 #include "net/base/net_errors.h"
11
12 namespace cronet {
13
14 WrappedChannelElementReader::WrappedChannelElementReader(
15 scoped_refptr<URLRequestAdapter::URLRequestAdapterDelegate> delegate,
16 uint64_t length)
17 : length_(length), offset_(0), delegate_(delegate) {}
18
19 WrappedChannelElementReader::~WrappedChannelElementReader() {
20 }
21
22 int WrappedChannelElementReader::Init(const net::CompletionCallback& callback) {
23 if (offset_ != 0)
24 return net::ERR_UPLOAD_STREAM_REWIND_NOT_SUPPORTED;
25 return net::OK;
26 }
27
28 uint64_t WrappedChannelElementReader::GetContentLength() const {
29 return length_;
30 }
31
32 uint64_t WrappedChannelElementReader::BytesRemaining() const {
33 return length_ - offset_;
34 }
35
36 bool WrappedChannelElementReader::IsInMemory() const {
37 return false;
38 }
39
40 int WrappedChannelElementReader::Read(net::IOBuffer* buf,
41 int buf_length,
42 const net::CompletionCallback& callback) {
43 DCHECK(!callback.is_null());
44 DCHECK(delegate_.get());
45 // TODO(mef): Post the read to file thread.
46 int bytes_read = delegate_->ReadFromUploadChannel(buf, buf_length);
47 if (bytes_read < 0)
48 return net::ERR_FAILED;
49 offset_ += bytes_read;
50 return bytes_read;
51 }
52
53 } // namespace cronet
54
OLDNEW
« no previous file with comments | « components/cronet/android/wrapped_channel_upload_element_reader.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698