// Copyright 2017 The Chromium OS Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SRC_FILE_STREAM_H_ #define SRC_FILE_STREAM_H_ #include <string> #include <utility> #include "base/files/file.h" #include "base/files/file_path.h" #include "puffin/common.h" #include "puffin/stream.h" namespace puffin { // A very simple class for reading and writing data into a file descriptor. class FileStream : public StreamInterface { … }; } // namespace puffin #endif // SRC_FILE_STREAM_H_