Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 | |
| 5 #ifndef CHROME_BROWSER_MEDIA_ANDROID_CDM_MEDIA_DRM_STORAGE_FACTORY_H_ | |
| 6 #define CHROME_BROWSER_MEDIA_ANDROID_CDM_MEDIA_DRM_STORAGE_FACTORY_H_ | |
| 7 | |
| 8 #include "media/mojo/interfaces/media_drm_storage.mojom.h" | |
| 9 | |
| 10 namespace content { | |
| 11 class RenderFrameHost; | |
| 12 } | |
| 13 | |
| 14 namespace chrome { | |
| 15 | |
| 16 void CreateMediaDrmStorage(content::RenderFrameHost* render_frame_host, | |
|
liberato (no reviews please)
2017/03/28 16:42:44
i think that the answer to my question is 'leave i
xhwang
2017/03/29 20:47:25
We discussed this offline. The idea of this commen
| |
| 17 media::mojom::MediaDrmStorageRequest request); | |
| 18 | |
| 19 } // namespace chrome | |
| 20 | |
| 21 #endif // CHROME_BROWSER_MEDIA_ANDROID_CDM_MEDIA_DRM_STORAGE_FACTORY_H_ | |
| OLD | NEW |