blob: 50615cedc8ea9cc6ca3397a572f73b29624dcf63 [file] [log] [blame]
// Copyright (c) 2011 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.
#include "cros-disks/ntfs_mounter.h"
#include "cros-disks/platform.h"
namespace cros_disks {
namespace {
// Expected location of the ntfs-3g executable.
const char kMountProgramPath[] = "/usr/bin/ntfs-3g";
const char kMountUser[] = "ntfs-3g";
} // namespace
const char NTFSMounter::kMounterType[] = "ntfs";
NTFSMounter::NTFSMounter(const std::string& source_path,
const std::string& target_path,
const std::string& filesystem_type,
const MountOptions& mount_options,
const Platform* platform,
brillo::ProcessReaper* process_reaper)
: FUSEMounter(source_path,
target_path,
filesystem_type,
mount_options,
platform,
process_reaper,
kMountProgramPath,
kMountUser,
"",
{},
false) {}
} // namespace cros_disks