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

Unified Diff: net/base/upload_bytes_element_reader.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 | « net/base/trace_net_log_observer_unittest.cc ('k') | net/base/upload_bytes_element_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/upload_bytes_element_reader.h
diff --git a/net/base/upload_bytes_element_reader.h b/net/base/upload_bytes_element_reader.h
deleted file mode 100644
index 3246d129ed44830f043c61d3304e11e6ef6509a3..0000000000000000000000000000000000000000
--- a/net/base/upload_bytes_element_reader.h
+++ /dev/null
@@ -1,66 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef NET_BASE_UPLOAD_BYTES_ELEMENT_READER_H_
-#define NET_BASE_UPLOAD_BYTES_ELEMENT_READER_H_
-
-#include <string>
-#include <vector>
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "net/base/upload_element_reader.h"
-
-namespace net {
-
-// An UploadElementReader implementation for bytes.
-// |data| should outlive this class because this class does not take the
-// ownership of the data.
-class NET_EXPORT UploadBytesElementReader : public UploadElementReader {
- public:
- UploadBytesElementReader(const char* bytes, uint64 length);
- ~UploadBytesElementReader() override;
-
- const char* bytes() const { return bytes_; }
- uint64 length() const { return length_; }
-
- // UploadElementReader overrides:
- const UploadBytesElementReader* AsBytesReader() const override;
- int Init(const CompletionCallback& callback) override;
- uint64 GetContentLength() const override;
- uint64 BytesRemaining() const override;
- bool IsInMemory() const override;
- int Read(IOBuffer* buf,
- int buf_length,
- const CompletionCallback& callback) override;
-
- private:
- const char* const bytes_;
- const uint64 length_;
- uint64 offset_;
-
- DISALLOW_COPY_AND_ASSIGN(UploadBytesElementReader);
-};
-
-// A subclass of UplodBytesElementReader which owns the data given as a vector.
-class NET_EXPORT UploadOwnedBytesElementReader
- : public UploadBytesElementReader {
- public:
- // |data| is cleared by this ctor.
- explicit UploadOwnedBytesElementReader(std::vector<char>* data);
- ~UploadOwnedBytesElementReader() override;
-
- // Creates UploadOwnedBytesElementReader with a string.
- static UploadOwnedBytesElementReader* CreateWithString(
- const std::string& string);
-
- private:
- std::vector<char> data_;
-
- DISALLOW_COPY_AND_ASSIGN(UploadOwnedBytesElementReader);
-};
-
-} // namespace net
-
-#endif // NET_BASE_UPLOAD_BYTES_ELEMENT_READER_H_
« no previous file with comments | « net/base/trace_net_log_observer_unittest.cc ('k') | net/base/upload_bytes_element_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698