blob: 6c6c9bf8276a3ab77296e8a3cc4049577da9f5f1 [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& filesystem_type,
const MountOptions& mount_options,
const Platform* platform,
brillo::ProcessReaper* process_reaper)
: FUSEMounter(filesystem_type,
mount_options,
platform,
process_reaper,
kMountProgramPath,
kMountUser,
"",
{},
false) {}
} // namespace cros_disks