summaryrefslogtreecommitdiff
path: root/chromium/media/fuchsia/cdm/client/fuchsia_cdm_util.cc
blob: 63682c7df3da730994e4c2dfaca156ca925a9202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/fuchsia/cdm/client/fuchsia_cdm_util.h"

#include "media/fuchsia/cdm/client/mojo_fuchsia_cdm_provider.h"
#include "media/fuchsia/cdm/fuchsia_cdm_factory.h"
#include "third_party/blink/public/common/browser_interface_broker_proxy.h"

namespace media {

std::unique_ptr<CdmFactory> CreateFuchsiaCdmFactory(
    blink::BrowserInterfaceBrokerProxy* interface_broker) {
  return std::make_unique<FuchsiaCdmFactory>(
      std::make_unique<MojoFuchsiaCdmProvider>(interface_broker));
}

}  // namespace media