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

Unified Diff: net/base/upload_bytes_element_reader.cc

Issue 10913179: net: Make UploadDataStream::Init() asynchronous. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: changed argument order Created 8 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 | « net/base/upload_bytes_element_reader.h ('k') | net/base/upload_data_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/upload_bytes_element_reader.cc
diff --git a/net/base/upload_bytes_element_reader.cc b/net/base/upload_bytes_element_reader.cc
index c99ce74eaceaea39460bcc4424e25ca9c7fb24e6..9beb1f436d6573e51383b83fd489e933d3419bd8 100644
--- a/net/base/upload_bytes_element_reader.cc
+++ b/net/base/upload_bytes_element_reader.cc
@@ -19,6 +19,10 @@ UploadBytesElementReader::UploadBytesElementReader(const char* bytes,
UploadBytesElementReader::~UploadBytesElementReader() {
}
+int UploadBytesElementReader::Init(const CompletionCallback& callback) {
+ return OK;
+}
+
int UploadBytesElementReader::InitSync() {
return OK;
}
« no previous file with comments | « net/base/upload_bytes_element_reader.h ('k') | net/base/upload_data_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698