mount_points.cc 501 B

1234567891011121314
  1. // Copyright (c) 2013 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "storage/browser/file_system/mount_points.h"
  5. namespace storage {
  6. MountPoints::MountPointInfo::MountPointInfo() = default;
  7. MountPoints::MountPointInfo::MountPointInfo(const std::string& name,
  8. const base::FilePath& path)
  9. : name(name), path(path) {}
  10. } // namespace storage