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_PROXY_VIDEO_CAPTURE_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_VIDEO_CAPTURE_RESOURCE_H_ |
6 #define PPAPI_PROXY_VIDEO_CAPTURE_RESOURCE_H_ | 6 #define PPAPI_PROXY_VIDEO_CAPTURE_RESOURCE_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
9 #include "ppapi/c/dev/ppp_video_capture_dev.h" | 12 #include "ppapi/c/dev/ppp_video_capture_dev.h" |
10 #include "ppapi/proxy/device_enumeration_resource_helper.h" | 13 #include "ppapi/proxy/device_enumeration_resource_helper.h" |
11 #include "ppapi/proxy/plugin_resource.h" | 14 #include "ppapi/proxy/plugin_resource.h" |
12 #include "ppapi/thunk/ppb_video_capture_api.h" | 15 #include "ppapi/thunk/ppb_video_capture_api.h" |
13 | 16 |
14 namespace ppapi { | 17 namespace ppapi { |
15 namespace proxy { | 18 namespace proxy { |
16 | 19 |
17 class VideoCaptureResource | 20 class VideoCaptureResource |
18 : public PluginResource, | 21 : public PluginResource, |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 | 90 |
88 DeviceEnumerationResourceHelper enumeration_helper_; | 91 DeviceEnumerationResourceHelper enumeration_helper_; |
89 | 92 |
90 DISALLOW_COPY_AND_ASSIGN(VideoCaptureResource); | 93 DISALLOW_COPY_AND_ASSIGN(VideoCaptureResource); |
91 }; | 94 }; |
92 | 95 |
93 } // namespace proxy | 96 } // namespace proxy |
94 } // namespace ppapi | 97 } // namespace ppapi |
95 | 98 |
96 #endif // PPAPI_PROXY_VIDEO_CAPTURE_RESOURCE_H_ | 99 #endif // PPAPI_PROXY_VIDEO_CAPTURE_RESOURCE_H_ |
OLD | NEW |