blob: a9fd53492551ae887b0e4496f0ee00d230fdae2a [file] [log] [blame]
// Copyright 2017 The Chromium 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 "components/viz/test/test_frame_sink_manager.h"
#include <utility>
namespace viz {
TestFrameSinkManagerImpl::TestFrameSinkManagerImpl() = default;
TestFrameSinkManagerImpl::~TestFrameSinkManagerImpl() = default;
void TestFrameSinkManagerImpl::BindReceiver(
mojo::PendingReceiver<mojom::FrameSinkManager> receiver,
mojo::PendingRemote<mojom::FrameSinkManagerClient> client) {
receiver_.Bind(std::move(receiver));
client_.Bind(std::move(client));
}
} // namespace viz