| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef PPAPI_PROXY_VIDEO_DECODER_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_VIDEO_DECODER_RESOURCE_H_ |
| 6 #define PPAPI_PROXY_VIDEO_DECODER_RESOURCE_H_ | 6 #define PPAPI_PROXY_VIDEO_DECODER_RESOURCE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 namespace gpu { | 24 namespace gpu { |
| 25 struct Mailbox; | 25 struct Mailbox; |
| 26 namespace gles2 { | 26 namespace gles2 { |
| 27 class GLES2Implementation; | 27 class GLES2Implementation; |
| 28 } | 28 } |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace ppapi { | 31 namespace ppapi { |
| 32 | 32 |
| 33 class PPB_Graphics3D_Shared; | |
| 34 class TrackedCallback; | 33 class TrackedCallback; |
| 35 | 34 |
| 36 namespace proxy { | 35 namespace proxy { |
| 37 | 36 |
| 38 class PPAPI_PROXY_EXPORT VideoDecoderResource | 37 class PPAPI_PROXY_EXPORT VideoDecoderResource |
| 39 : public PluginResource, | 38 : public PluginResource, |
| 40 public thunk::PPB_VideoDecoder_API { | 39 public thunk::PPB_VideoDecoder_API { |
| 41 public: | 40 public: |
| 42 VideoDecoderResource(Connection connection, PP_Instance instance); | 41 VideoDecoderResource(Connection connection, PP_Instance instance); |
| 43 ~VideoDecoderResource() override; | 42 ~VideoDecoderResource() override; |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 bool testing_; | 189 bool testing_; |
| 191 int32_t decoder_last_error_; | 190 int32_t decoder_last_error_; |
| 192 | 191 |
| 193 DISALLOW_COPY_AND_ASSIGN(VideoDecoderResource); | 192 DISALLOW_COPY_AND_ASSIGN(VideoDecoderResource); |
| 194 }; | 193 }; |
| 195 | 194 |
| 196 } // namespace proxy | 195 } // namespace proxy |
| 197 } // namespace ppapi | 196 } // namespace ppapi |
| 198 | 197 |
| 199 #endif // PPAPI_PROXY_VIDEO_DECODER_RESOURCE_H_ | 198 #endif // PPAPI_PROXY_VIDEO_DECODER_RESOURCE_H_ |
| OLD | NEW |