blob: ab7cd82a0051d8a4da9501adb5c7f5ff2fa8dbfb [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/file_system_provider/opened_cloud_file.h"
namespace ash::file_system_provider {
OpenedCloudFile::OpenedCloudFile(const base::FilePath& file_path,
OpenFileMode mode,
const std::string& version_tag)
: file_path(file_path), mode(mode), version_tag(version_tag) {}
OpenedCloudFile::~OpenedCloudFile() = default;
} // namespace ash::file_system_provider