aw_key_systems.h 599 B

1234567891011121314151617181920
  1. // Copyright 2013 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef ANDROID_WEBVIEW_RENDERER_AW_KEY_SYSTEMS_H_
  5. #define ANDROID_WEBVIEW_RENDERER_AW_KEY_SYSTEMS_H_
  6. #include <memory>
  7. #include <vector>
  8. #include "media/base/key_system_properties.h"
  9. namespace android_webview {
  10. void AwAddKeySystems(std::vector<std::unique_ptr<media::KeySystemProperties>>*
  11. key_systems_properties);
  12. } // namespace android_webview
  13. #endif // ANDROID_WEBVIEW_RENDERER_AW_KEY_SYSTEMS_H_