| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_CAMERA_CAPABILITIES_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_CAMERA_CAPABILITIES_RESOURCE_H_ |
| 6 #define PPAPI_PROXY_CAMERA_CAPABILITIES_RESOURCE_H_ | 6 #define PPAPI_PROXY_CAMERA_CAPABILITIES_RESOURCE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
| 8 #include <vector> | 11 #include <vector> |
| 9 | 12 |
| 10 #include "base/basictypes.h" | 13 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 12 #include "ppapi/proxy/ppapi_proxy_export.h" | 15 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 13 #include "ppapi/shared_impl/resource.h" | 16 #include "ppapi/shared_impl/resource.h" |
| 14 #include "ppapi/thunk/ppb_camera_capabilities_api.h" | 17 #include "ppapi/thunk/ppb_camera_capabilities_api.h" |
| 15 | 18 |
| 16 namespace ppapi { | 19 namespace ppapi { |
| 17 namespace proxy { | 20 namespace proxy { |
| 18 | 21 |
| 19 class PPAPI_PROXY_EXPORT CameraCapabilitiesResource | 22 class PPAPI_PROXY_EXPORT CameraCapabilitiesResource |
| 20 : public Resource, | 23 : public Resource, |
| (...skipping 16 matching lines...) Expand all Loading... |
| 37 size_t num_video_capture_formats_; | 40 size_t num_video_capture_formats_; |
| 38 scoped_ptr<PP_VideoCaptureFormat[]> video_capture_formats_; | 41 scoped_ptr<PP_VideoCaptureFormat[]> video_capture_formats_; |
| 39 | 42 |
| 40 DISALLOW_COPY_AND_ASSIGN(CameraCapabilitiesResource); | 43 DISALLOW_COPY_AND_ASSIGN(CameraCapabilitiesResource); |
| 41 }; | 44 }; |
| 42 | 45 |
| 43 } // namespace proxy | 46 } // namespace proxy |
| 44 } // namespace ppapi | 47 } // namespace ppapi |
| 45 | 48 |
| 46 #endif // PPAPI_PROXY_CAMERA_CAPABILITIES_RESOURCE_H_ | 49 #endif // PPAPI_PROXY_CAMERA_CAPABILITIES_RESOURCE_H_ |
| OLD | NEW |