| // 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 |