Chromium Code Reviews| Index: media/video/capture/video_capture_device.h |
| diff --git a/media/video/capture/video_capture_device.h b/media/video/capture/video_capture_device.h |
| index 824cdb405ba4bfd418b401754c1d928f772eb520..38600c56b62878363f278d2b5923b7402960e97c 100644 |
| --- a/media/video/capture/video_capture_device.h |
| +++ b/media/video/capture/video_capture_device.h |
| @@ -18,6 +18,7 @@ |
| #include "base/logging.h" |
| #include "base/time/time.h" |
| #include "media/base/media_export.h" |
| +#include "media/base/video_frame.h" |
| #include "media/video/capture/video_capture_types.h" |
| namespace media { |
| @@ -109,14 +110,7 @@ class MEDIA_EXPORT VideoCaptureDevice { |
| }; |
| // Manages a list of Name entries. |
| - class MEDIA_EXPORT Names |
| - : public NON_EXPORTED_BASE(std::list<Name>) { |
| - public: |
| - // Returns NULL if no entry was found by that ID. |
| - Name* FindById(const std::string& id); |
| - |
| - // Allow generated copy constructor and assignment. |
| - }; |
| + typedef std::list<Name> Names; |
|
ncarter (slow)
2013/11/12 20:56:46
Hooray!
mcasas
2013/11/13 11:40:37
Done.
|
| class MEDIA_EXPORT Client { |
| public: |