blob: 5ed5e29693038374af008b4ed04a448691ab218e [file] [log] [blame]
// Copyright 2020 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 "smbfs/smbfs_impl.h"
#include <utility>
#include <base/logging.h>
namespace smbfs {
SmbFsImpl::SmbFsImpl(SmbFilesystem* fs,
mojom::SmbFsDelegatePtr delegate,
mojom::SmbFsRequest request)
: fs_(fs),
delegate_(std::move(delegate)),
binding_(this, std::move(request)) {
DCHECK(fs_);
}
SmbFsImpl::~SmbFsImpl() = default;
} // namespace smbfs