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

Side by Side Diff: webkit/plugins/ppapi/ppb_video_decoder_impl.h

Issue 10408078: Cleanup: Remove unneeded scoped_ptr.h includes from webkit. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/ppapi/ppb_scrollbar_impl.h ('k') | webkit/plugins/ppapi/ppb_widget_impl.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) 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 WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_
6 #define WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_ 6 #define WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_
7 7
8 #include <vector>
9
10 #include "base/basictypes.h" 8 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
12 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/ref_counted.h"
13 #include "ppapi/c/dev/pp_video_dev.h" 11 #include "ppapi/c/dev/pp_video_dev.h"
14 #include "ppapi/c/dev/ppp_video_decoder_dev.h" 12 #include "ppapi/c/dev/ppp_video_decoder_dev.h"
15 #include "ppapi/c/pp_var.h" 13 #include "ppapi/c/pp_var.h"
16 #include "ppapi/shared_impl/ppb_video_decoder_shared.h" 14 #include "ppapi/shared_impl/ppb_video_decoder_shared.h"
17 #include "ppapi/shared_impl/resource.h" 15 #include "ppapi/shared_impl/resource.h"
18 #include "ppapi/thunk/ppb_video_decoder_api.h" 16 #include "ppapi/thunk/ppb_video_decoder_api.h"
19 #include "webkit/plugins/ppapi/plugin_delegate.h" 17 #include "webkit/plugins/ppapi/plugin_delegate.h"
20 18
21 struct PP_PictureBuffer_Dev; 19 struct PP_PictureBuffer_Dev;
22 struct PP_VideoBitstreamBuffer_Dev; 20 struct PP_VideoBitstreamBuffer_Dev;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 // Reference to the plugin requesting this interface. 74 // Reference to the plugin requesting this interface.
77 const PPP_VideoDecoder_Dev* ppp_videodecoder_; 75 const PPP_VideoDecoder_Dev* ppp_videodecoder_;
78 76
79 DISALLOW_COPY_AND_ASSIGN(PPB_VideoDecoder_Impl); 77 DISALLOW_COPY_AND_ASSIGN(PPB_VideoDecoder_Impl);
80 }; 78 };
81 79
82 } // namespace ppapi 80 } // namespace ppapi
83 } // namespace webkit 81 } // namespace webkit
84 82
85 #endif // WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_ 83 #endif // WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_scrollbar_impl.h ('k') | webkit/plugins/ppapi/ppb_widget_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698