blob: 1c31c8e509fc26065e213a048e90a01245abdccc [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"
namespace viz {
TestFrameSinkManagerImpl::TestFrameSinkManagerImpl() : binding_(this) {}
TestFrameSinkManagerImpl::~TestFrameSinkManagerImpl() {}
void TestFrameSinkManagerImpl::BindRequest(
mojom::FrameSinkManagerRequest request,
mojom::FrameSinkManagerClientPtr client) {
binding_.Bind(std::move(request));
client_ = std::move(client);
}
} // namespace viz