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

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

Issue 2539033005: ppapi: Cleanup class/struct forward declarations (Closed)
Patch Set: Add missing forward declaration in content/renderer/pepper Created 4 years 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/video_capture_resource.h ('k') | ppapi/proxy/video_encoder_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 (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
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
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_
OLDNEW
« no previous file with comments | « ppapi/proxy/video_capture_resource.h ('k') | ppapi/proxy/video_encoder_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698