Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 "chrome/browser/chromeos/arc/fileapi/arc_content_file_system_file_strea m_reader.h" | |
| 6 | |
| 7 #include "net/base/net_errors.h" | |
| 8 | |
| 9 namespace arc { | |
| 10 | |
| 11 ArcContentFileSystemFileStreamReader::ArcContentFileSystemFileStreamReader( | |
| 12 const storage::FileSystemURL& url, | |
| 13 int64_t offset, | |
| 14 int64_t max_bytes_to_read) {} | |
| 15 | |
| 16 ArcContentFileSystemFileStreamReader::~ArcContentFileSystemFileStreamReader() {} | |
| 17 | |
| 18 int ArcContentFileSystemFileStreamReader::Read( | |
| 19 net::IOBuffer* buffer, | |
| 20 int buffer_length, | |
| 21 const net::CompletionCallback& callback) { | |
| 22 NOTIMPLEMENTED(); | |
| 23 return net::ERR_FAILED; | |
|
hidehiko
2016/10/12 09:59:07
maybe net::ERR_NOT_IMPLEMENTED?
hashimoto
2016/10/12 10:08:11
Done.
| |
| 24 } | |
| 25 | |
| 26 int64_t ArcContentFileSystemFileStreamReader::GetLength( | |
| 27 const net::Int64CompletionCallback& callback) { | |
| 28 NOTIMPLEMENTED(); | |
| 29 return net::ERR_FAILED; | |
| 30 } | |
| 31 | |
| 32 } // namespace arc | |
| OLD | NEW |