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

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

Issue 1337153002: [Blob] BlobReader class & tests, and removal of all redundant reading. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Trybot fixes Created 5 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 unified diff | Download patch
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* 9 const storage::UploadBlobElementReader*
10 UploadElementReader::AsDiskCacheEntryReaderForTests() const { 10 UploadElementReader::AsUploadBlobElementReaderForTests() const {
11 return nullptr; 11 return nullptr;
12 } 12 }
13 13
14 const UploadBytesElementReader* UploadElementReader::AsBytesReader() const { 14 const UploadBytesElementReader* UploadElementReader::AsBytesReader() const {
15 return nullptr; 15 return nullptr;
16 } 16 }
17 17
18 const UploadFileElementReader* UploadElementReader::AsFileReader() const { 18 const UploadFileElementReader* UploadElementReader::AsFileReader() const {
19 return nullptr; 19 return nullptr;
20 } 20 }
21 21
22 bool UploadElementReader::IsInMemory() const { 22 bool UploadElementReader::IsInMemory() const {
23 return false; 23 return false;
24 } 24 }
25 25
26 } // namespace net 26 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698