blob: 80935da65a1e2c340fdcc7c77ff27d5c5dbb8432 [file] [log] [blame]
// Copyright 2018 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.
#ifndef CHROMEOS_COMPONENTS_DRIVEFS_FAKE_DRIVEFS_LAUNCHER_CLIENT_H_
#define CHROMEOS_COMPONENTS_DRIVEFS_FAKE_DRIVEFS_LAUNCHER_CLIENT_H_
#include "base/component_export.h"
#include "base/files/file_path.h"
#include "base/macros.h"
#include "base/no_destructor.h"
#include "chromeos/components/drivefs/mojom/fake_drivefs_launcher.mojom.h"
namespace drivefs {
class FakeDriveFsLauncherClient {
public:
COMPONENT_EXPORT(DRIVEFS)
static void Init(const base::FilePath& socket_path,
const base::FilePath& chroot_path);
private:
friend class base::NoDestructor<FakeDriveFsLauncherClient>;
FakeDriveFsLauncherClient(const base::FilePath& chroot_path,
const base::FilePath& socket_path);
~FakeDriveFsLauncherClient();
base::FilePath MaybeMountDriveFs(
const std::string& source_path,
const std::vector<std::string>& mount_options);
const base::FilePath chroot_path_;
const base::FilePath socket_path_;
mojom::FakeDriveFsLauncherPtr launcher_;
DISALLOW_COPY_AND_ASSIGN(FakeDriveFsLauncherClient);
};
} // namespace drivefs
#endif // CHROMEOS_COMPONENTS_DRIVEFS_FAKE_DRIVEFS_LAUNCHER_CLIENT_H_