blob: 440699342752c58662bdd0803079392c5b736925 [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/filesystem.h"
#include <base/logging.h>
using std::string;
namespace cros_disks {
Filesystem::Filesystem(const string& type)
: accepts_user_and_group_id_(false),
is_mounted_read_only_(false),
type_(type) {
CHECK(!type.empty()) << "Invalid filesystem type";
}
} // namespace cros_disks