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

Side by Side Diff: net/base/upload_element_reader.cc

Issue 1376123002: Revert of [Blob] BlobReader class & tests, and removal of all redundant reading. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « net/base/upload_element_reader.h ('k') | net/net.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "net/base/upload_element_reader.h" 5 #include "net/base/upload_element_reader.h"
6 6
7 namespace net { 7 namespace net {
8 8
9 const UploadDiskCacheEntryElementReader*
10 UploadElementReader::AsDiskCacheEntryReaderForTests() const {
11 return nullptr;
12 }
13
9 const UploadBytesElementReader* UploadElementReader::AsBytesReader() const { 14 const UploadBytesElementReader* UploadElementReader::AsBytesReader() const {
10 return nullptr; 15 return nullptr;
11 } 16 }
12 17
13 const UploadFileElementReader* UploadElementReader::AsFileReader() const { 18 const UploadFileElementReader* UploadElementReader::AsFileReader() const {
14 return nullptr; 19 return nullptr;
15 } 20 }
16 21
17 bool UploadElementReader::IsInMemory() const { 22 bool UploadElementReader::IsInMemory() const {
18 return false; 23 return false;
19 } 24 }
20 25
21 } // namespace net 26 } // namespace net
OLDNEW
« no previous file with comments | « net/base/upload_element_reader.h ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698