| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 | 5 |
| 6 #ifndef PPAPI_CPP_PRIVATE_CAMERA_CAPABILITIES_PRIVATE_H_ | 6 #ifndef PPAPI_CPP_PRIVATE_CAMERA_CAPABILITIES_PRIVATE_H_ |
| 7 #define PPAPI_CPP_PRIVATE_CAMERA_CAPABILITIES_PRIVATE_H_ | 7 #define PPAPI_CPP_PRIVATE_CAMERA_CAPABILITIES_PRIVATE_H_ |
| 8 | 8 |
| 9 #include <vector> |
| 10 |
| 9 #include "ppapi/c/private/ppb_camera_capabilities_private.h" | 11 #include "ppapi/c/private/ppb_camera_capabilities_private.h" |
| 10 #include "ppapi/cpp/resource.h" | 12 #include "ppapi/cpp/resource.h" |
| 11 #include "ppapi/cpp/size.h" | 13 #include "ppapi/cpp/size.h" |
| 12 | 14 |
| 13 /// @file | 15 /// @file |
| 14 /// This file defines the CameraCapabilities_Private interface for | 16 /// This file defines the CameraCapabilities_Private interface for |
| 15 /// establishing an image capture configuration resource within the browser. | 17 /// establishing an image capture configuration resource within the browser. |
| 16 namespace pp { | 18 namespace pp { |
| 17 | 19 |
| 18 /// The <code>CameraCapabilities_Private</code> interface contains methods for | 20 /// The <code>CameraCapabilities_Private</code> interface contains methods for |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 /// capture capabilities resource. | 75 /// capture capabilities resource. |
| 74 /// | 76 /// |
| 75 /// @return true if the given resource is an <code> | 77 /// @return true if the given resource is an <code> |
| 76 /// CameraCapabilities_Private</code> resource, otherwise false. | 78 /// CameraCapabilities_Private</code> resource, otherwise false. |
| 77 static bool IsCameraCapabilities(const Resource& resource); | 79 static bool IsCameraCapabilities(const Resource& resource); |
| 78 }; | 80 }; |
| 79 | 81 |
| 80 } // namespace pp | 82 } // namespace pp |
| 81 | 83 |
| 82 #endif /* PPAPI_CPP_PRIVATE_CAMERA_CAPABILITIES_PRIVATE_H_ */ | 84 #endif /* PPAPI_CPP_PRIVATE_CAMERA_CAPABILITIES_PRIVATE_H_ */ |
| 83 | |
| OLD | NEW |