OLD | NEW |
---|---|
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 NULL; | 15 return NULL; |
mmenke
2015/06/17 19:11:16
optional: Suggest updating these to nullptrs, whi
gavinp
2015/06/18 18:50:55
Done.
| |
11 } | 16 } |
12 | 17 |
13 const UploadFileElementReader* UploadElementReader::AsFileReader() const { | 18 const UploadFileElementReader* UploadElementReader::AsFileReader() const { |
14 return NULL; | 19 return NULL; |
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 |
OLD | NEW |