2015-08-31 13:28:07 +02:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_RENDERER_MEDIA_CEF_KEY_SYSTEMS_H_
|
|
|
|
#define CEF_LIBCEF_RENDERER_MEDIA_CEF_KEY_SYSTEMS_H_
|
|
|
|
|
2016-05-25 01:35:43 +02:00
|
|
|
#include <memory>
|
2015-08-31 13:28:07 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2016-05-25 01:35:43 +02:00
|
|
|
namespace media {
|
|
|
|
class KeySystemProperties;
|
|
|
|
}
|
2015-08-31 13:28:07 +02:00
|
|
|
|
2016-05-25 01:35:43 +02:00
|
|
|
// Register the key systems supported by populating |key_systems_properties|.
|
|
|
|
void AddCefKeySystems(
|
|
|
|
std::vector<std::unique_ptr<media::KeySystemProperties>>*
|
|
|
|
key_systems_properties);
|
2015-08-31 13:28:07 +02:00
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_RENDERER_MEDIA_CEF_KEY_SYSTEMS_H_
|