OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 PPAPI_THUNK_VIDEO_CAPTURE_API_H_ | 5 #ifndef PPAPI_THUNK_VIDEO_CAPTURE_API_H_ |
6 #define PPAPI_THUNK_VIDEO_CAPTURE_API_H_ | 6 #define PPAPI_THUNK_VIDEO_CAPTURE_API_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include <vector> | 11 #include <vector> |
10 | 12 |
11 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
12 #include "ppapi/c/dev/ppb_video_capture_dev.h" | 14 #include "ppapi/c/dev/ppb_video_capture_dev.h" |
13 #include "ppapi/c/pp_array_output.h" | 15 #include "ppapi/c/pp_array_output.h" |
14 #include "ppapi/c/pp_resource.h" | 16 #include "ppapi/c/pp_resource.h" |
15 | 17 |
16 namespace ppapi { | 18 namespace ppapi { |
17 | 19 |
(...skipping 20 matching lines...) Expand all Loading... |
38 | 40 |
39 // This function is not exposed through the C API. It is only used by flash | 41 // This function is not exposed through the C API. It is only used by flash |
40 // to make synchronous device enumeration. | 42 // to make synchronous device enumeration. |
41 virtual int32_t EnumerateDevicesSync(const PP_ArrayOutput& devices) = 0; | 43 virtual int32_t EnumerateDevicesSync(const PP_ArrayOutput& devices) = 0; |
42 }; | 44 }; |
43 | 45 |
44 } // namespace thunk | 46 } // namespace thunk |
45 } // namespace ppapi | 47 } // namespace ppapi |
46 | 48 |
47 #endif // PPAPI_THUNK_VIDEO_CAPTURE_API_H_ | 49 #endif // PPAPI_THUNK_VIDEO_CAPTURE_API_H_ |
OLD | NEW |