OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMECAST_BROWSER_MEDIA_MEDIA_PIPELINE_BACKEND_FACTORY_H_ | 5 #ifndef CHROMECAST_BROWSER_MEDIA_MEDIA_PIPELINE_BACKEND_FACTORY_H_ |
6 #define CHROMECAST_BROWSER_MEDIA_MEDIA_PIPELINE_BACKEND_FACTORY_H_ | 6 #define CHROMECAST_BROWSER_MEDIA_MEDIA_PIPELINE_BACKEND_FACTORY_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "chromecast/public/media/media_pipeline_backend.h" | 11 #include "chromecast/public/media/media_pipeline_backend.h" |
12 #include "chromecast/public/media/media_pipeline_device_params.h" | 12 #include "chromecast/public/media/media_pipeline_device_params.h" |
13 | 13 |
14 namespace chromecast { | 14 namespace chromecast { |
15 namespace media { | 15 namespace media { |
16 | 16 |
17 typedef base::Callback<std::unique_ptr<MediaPipelineBackend>( | 17 typedef base::Callback<std::unique_ptr<MediaPipelineBackend>( |
18 const MediaPipelineDeviceParams&)> | 18 const MediaPipelineDeviceParams&, |
19 CreateMediaPipelineBackendCB; | 19 int stream_type)> CreateMediaPipelineBackendCB; |
kmackay
2016/07/12 05:20:31
I think it would be better to take the device ID s
tianyuwang1
2016/07/12 15:28:09
Done.
| |
20 | 20 |
21 } // media | 21 } // media |
22 } // chromecast | 22 } // chromecast |
23 | 23 |
24 #endif // CHROMECAST_BROWSER_MEDIA_MEDIA_PIPELINE_BACKEND_FACTORY_H_ | 24 #endif // CHROMECAST_BROWSER_MEDIA_MEDIA_PIPELINE_BACKEND_FACTORY_H_ |
OLD | NEW |