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 WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PPB_VIDEO_DECODER_IMPL_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PPB_VIDEO_DECODER_IMPL_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "content/renderer/pepper/plugin_delegate.h" |
11 #include "ppapi/c/dev/pp_video_dev.h" | 12 #include "ppapi/c/dev/pp_video_dev.h" |
12 #include "ppapi/c/dev/ppp_video_decoder_dev.h" | 13 #include "ppapi/c/dev/ppp_video_decoder_dev.h" |
13 #include "ppapi/c/pp_var.h" | 14 #include "ppapi/c/pp_var.h" |
14 #include "ppapi/shared_impl/ppb_video_decoder_shared.h" | 15 #include "ppapi/shared_impl/ppb_video_decoder_shared.h" |
15 #include "ppapi/shared_impl/resource.h" | 16 #include "ppapi/shared_impl/resource.h" |
16 #include "ppapi/thunk/ppb_video_decoder_api.h" | 17 #include "ppapi/thunk/ppb_video_decoder_api.h" |
17 #include "webkit/plugins/ppapi/plugin_delegate.h" | |
18 | 18 |
19 struct PP_PictureBuffer_Dev; | 19 struct PP_PictureBuffer_Dev; |
20 struct PP_VideoBitstreamBuffer_Dev; | 20 struct PP_VideoBitstreamBuffer_Dev; |
21 | 21 |
22 namespace gpu { | 22 namespace gpu { |
23 namespace gles2 { | 23 namespace gles2 { |
24 class GLES2Implementation; | 24 class GLES2Implementation; |
25 } // namespace gles2 | 25 } // namespace gles2 |
26 } // namespace gpu | 26 } // namespace gpu |
27 | 27 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 | 77 |
78 // Reference to the plugin requesting this interface. | 78 // Reference to the plugin requesting this interface. |
79 const PPP_VideoDecoder_Dev* ppp_videodecoder_; | 79 const PPP_VideoDecoder_Dev* ppp_videodecoder_; |
80 | 80 |
81 DISALLOW_COPY_AND_ASSIGN(PPB_VideoDecoder_Impl); | 81 DISALLOW_COPY_AND_ASSIGN(PPB_VideoDecoder_Impl); |
82 }; | 82 }; |
83 | 83 |
84 } // namespace ppapi | 84 } // namespace ppapi |
85 } // namespace webkit | 85 } // namespace webkit |
86 | 86 |
87 #endif // WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_ | 87 #endif // CONTENT_RENDERER_PEPPER_PPB_VIDEO_DECODER_IMPL_H_ |
OLD | NEW |