summaryrefslogtreecommitdiff
path: root/chromium/media/mojo/services/gpu_mojo_media_client_default.cc
blob: 24c6d5f506443fbb46bbea258c38041e0ba0dcdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2021 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 "media/mojo/services/gpu_mojo_media_client.h"

namespace media {

std::unique_ptr<GpuMojoMediaClient::PlatformDelegate>
GpuMojoMediaClient::PlatformDelegate::Create(GpuMojoMediaClient* client) {
  return std::make_unique<GpuMojoMediaClient::PlatformDelegate>();
}

}  // namespace media