blob: 2a95eb816aec97f64924c265879cb67bb53e11c0 [file] [log] [blame]
[email protected]d98961652012-09-11 20:27:211// 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
3// found in the LICENSE file.
4
5#include "net/base/upload_element_reader.h"
6
[email protected]d98961652012-09-11 20:27:217namespace net {
8
[email protected]0736d9e2012-11-28 19:50:409const UploadBytesElementReader* UploadElementReader::AsBytesReader() const {
gavinp9668ba5c2015-06-19 01:01:0410 return nullptr;
[email protected]0736d9e2012-11-28 19:50:4011}
12
13const UploadFileElementReader* UploadElementReader::AsFileReader() const {
gavinp9668ba5c2015-06-19 01:01:0414 return nullptr;
[email protected]0736d9e2012-11-28 19:50:4015}
16
[email protected]d98961652012-09-11 20:27:2117bool UploadElementReader::IsInMemory() const {
18 return false;
19}
20
[email protected]d98961652012-09-11 20:27:2121} // namespace net