Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: ppapi/proxy/camera_capabilities_resource.h

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/proxy/browser_font_singleton_resource.h ('k') | ppapi/proxy/camera_device_resource.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « ppapi/proxy/browser_font_singleton_resource.h ('k') | ppapi/proxy/camera_device_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698