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

Unified Diff: media/video/mft_h264_decode_engine.h

Issue 6825055: Include base/win/scoped_comptr.h instead of base/scoped_comptr_win.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert bad indentation, rebase Created 9 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/tools/mfdecoder/mfdecoder.cc ('k') | media/video/mft_h264_decode_engine.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/video/mft_h264_decode_engine.h
diff --git a/media/video/mft_h264_decode_engine.h b/media/video/mft_h264_decode_engine.h
index 9ce79350e6d5c67b54dc4652f8c97891c159883c..9a2ca5d0d3bbd834e55aeb5a0411e394065d9b67 100644
--- a/media/video/mft_h264_decode_engine.h
+++ b/media/video/mft_h264_decode_engine.h
@@ -17,7 +17,7 @@
#include <vector>
#include "base/gtest_prod_util.h"
-#include "base/scoped_comptr_win.h"
+#include "base/win/scoped_comptr.h"
#include "media/video/video_decode_engine.h"
struct IDirect3DSurface9;
@@ -77,11 +77,12 @@ class MftH264DecodeEngine : public media::VideoDecodeEngine {
bool DoDecode(const PipelineStatistics& statistics);
void OnAllocFramesDone();
void OnUploadVideoFrameDone(
- ScopedComPtr<IDirect3DSurface9, &IID_IDirect3DSurface9> surface,
+ base::win::ScopedComPtr<IDirect3DSurface9,
+ &IID_IDirect3DSurface9> surface,
scoped_refptr<media::VideoFrame> frame, PipelineStatistics statistics);
bool use_dxva_;
- ScopedComPtr<IMFTransform> decode_engine_;
+ base::win::ScopedComPtr<IMFTransform> decode_engine_;
MFT_INPUT_STREAM_INFO input_stream_info_;
MFT_OUTPUT_STREAM_INFO output_stream_info_;
« no previous file with comments | « media/tools/mfdecoder/mfdecoder.cc ('k') | media/video/mft_h264_decode_engine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698