blob: 7f6d6d1d838a705d3ae74e315c626f5c3e01340d [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/url_pattern_index/copying_file_stream.h"
namespace url_pattern_index {
// CopyingFileInputStream ------------------------------------------------------
CopyingFileInputStream::~CopyingFileInputStream() = default;
CopyingFileInputStream::CopyingFileInputStream(base::File file)
: file_(std::move(file)) {}
int CopyingFileInputStream::Read(void* buffer, int size) {
return file_.ReadAtCurrentPosNoBestEffort(static_cast<char*>(buffer), size);
}
// CopyingFileOutputStream -----------------------------------------------------
CopyingFileOutputStream::~CopyingFileOutputStream() = default;
CopyingFileOutputStream::CopyingFileOutputStream(base::File file)
: file_(std::move(file)) {}
bool CopyingFileOutputStream::Write(const void* buffer, int size) {
return file_.WriteAtCurrentPos(static_cast<const char*>(buffer), size) ==
size;
}
} // namespace url_pattern_index