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 CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_VIDEO_CAPTURE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_VIDEO_CAPTURE_IMPL_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_VIDEO_CAPTURE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_VIDEO_CAPTURE_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "content/renderer/pepper/plugin_delegate.h" |
14 #include "media/video/capture/video_capture.h" | 15 #include "media/video/capture/video_capture.h" |
15 #include "media/video/capture/video_capture_types.h" | 16 #include "media/video/capture/video_capture_types.h" |
16 #include "webkit/plugins/ppapi/plugin_delegate.h" | |
17 | 17 |
18 class GURL; | 18 class GURL; |
19 | 19 |
20 namespace media { | 20 namespace media { |
21 class VideoCaptureHandlerProxy; | 21 class VideoCaptureHandlerProxy; |
22 } | 22 } |
23 | 23 |
24 namespace content { | 24 namespace content { |
25 | 25 |
26 class PepperPluginDelegateImpl; | 26 class PepperPluginDelegateImpl; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 // there isn't any pending request before this object goes away. | 89 // there isn't any pending request before this object goes away. |
90 bool pending_open_device_; | 90 bool pending_open_device_; |
91 int pending_open_device_id_; | 91 int pending_open_device_id_; |
92 | 92 |
93 DISALLOW_COPY_AND_ASSIGN(PepperPlatformVideoCaptureImpl); | 93 DISALLOW_COPY_AND_ASSIGN(PepperPlatformVideoCaptureImpl); |
94 }; | 94 }; |
95 | 95 |
96 } // namespace content | 96 } // namespace content |
97 | 97 |
98 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_VIDEO_CAPTURE_IMPL_H_ | 98 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_VIDEO_CAPTURE_IMPL_H_ |
OLD | NEW |