| Index: chrome/renderer/media/encrypted_media_utils_android.h
|
| diff --git a/chrome/renderer/media/encrypted_media_utils_android.h b/chrome/renderer/media/encrypted_media_utils_android.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4da8139cde2c389b88a0fed68a1eadead774bfdd
|
| --- /dev/null
|
| +++ b/chrome/renderer/media/encrypted_media_utils_android.h
|
| @@ -0,0 +1,20 @@
|
| +// 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 CHROME_RENDERER_MEDIA_ENCRYPTED_MEDIA_UTILS_ANDROID_H_
|
| +#define CHROME_RENDERER_MEDIA_ENCRYPTED_MEDIA_UTILS_ANDROID_H_
|
| +
|
| +#include "content/public/renderer/key_system_info.h"
|
| +
|
| +struct SupportedKeySystem;
|
| +
|
| +namespace chrome {
|
| +
|
| +// Convert SupportedKeySystem to content::KeySystemInfo.
|
| +content::KeySystemInfo SupportedKeySystemToKeySystemInfo(
|
| + const SupportedKeySystem& key_system);
|
| +
|
| +} // namespace chrome
|
| +
|
| +#endif // CHROME_RENDERER_MEDIA_ENCRYPTED_MEDIA_UTILS_ANDROID_H_
|
|
|