blob: 035b82877a36c2020060e4c7b5598ed81efd251d [file] [log] [blame]
// Copyright (c) 2013 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 "cryptohome/storage/mount_factory.h"
#include "cryptohome/keyset_management.h"
#include "cryptohome/platform.h"
#include "cryptohome/storage/homedirs.h"
#include "cryptohome/storage/mount.h"
namespace cryptohome {
MountFactory::MountFactory() {}
MountFactory::~MountFactory() {}
Mount* MountFactory::New(Platform* platform,
HomeDirs* homedirs,
KeysetManagement* keyset_management) {
return new Mount(platform, homedirs, keyset_management);
}
} // namespace cryptohome