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

Unified 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, 3 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cronet/android/wrapped_channel_upload_element_reader.cc
diff --git a/components/cronet/android/wrapped_channel_upload_element_reader.cc b/components/cronet/android/wrapped_channel_upload_element_reader.cc
deleted file mode 100644
index 88dede7566ce1b22f71de6e0d9f18257ce6a2581..0000000000000000000000000000000000000000
--- a/components/cronet/android/wrapped_channel_upload_element_reader.cc
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright 2014 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.
-
-#include "components/cronet/android/wrapped_channel_upload_element_reader.h"
-
-#include "base/android/jni_android.h"
-#include "base/logging.h"
-#include "net/base/io_buffer.h"
-#include "net/base/net_errors.h"
-
-namespace cronet {
-
-WrappedChannelElementReader::WrappedChannelElementReader(
- scoped_refptr<URLRequestAdapter::URLRequestAdapterDelegate> delegate,
- uint64_t length)
- : length_(length), offset_(0), delegate_(delegate) {}
-
-WrappedChannelElementReader::~WrappedChannelElementReader() {
-}
-
-int WrappedChannelElementReader::Init(const net::CompletionCallback& callback) {
- if (offset_ != 0)
- return net::ERR_UPLOAD_STREAM_REWIND_NOT_SUPPORTED;
- return net::OK;
-}
-
-uint64_t WrappedChannelElementReader::GetContentLength() const {
- return length_;
-}
-
-uint64_t WrappedChannelElementReader::BytesRemaining() const {
- return length_ - offset_;
-}
-
-bool WrappedChannelElementReader::IsInMemory() const {
- return false;
-}
-
-int WrappedChannelElementReader::Read(net::IOBuffer* buf,
- int buf_length,
- const net::CompletionCallback& callback) {
- DCHECK(!callback.is_null());
- DCHECK(delegate_.get());
- // TODO(mef): Post the read to file thread.
- int bytes_read = delegate_->ReadFromUploadChannel(buf, buf_length);
- if (bytes_read < 0)
- return net::ERR_FAILED;
- offset_ += bytes_read;
- return bytes_read;
-}
-
-} // namespace cronet
-
« 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