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

Side by Side Diff: chrome/browser/chromeos/arc/fileapi/arc_content_file_system_file_stream_reader.cc

Issue 2411323002: arc: Empty implementation of ARC content file system (Closed)
Patch Set: Created 4 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
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698