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

Side by Side Diff: media/capture/video/win/sink_filter_win.h

Issue 1542013004: Switch to standard integer types in media/, take 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more stddef Created 4 years, 12 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
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 // Implement a DirectShow sink filter used for receiving captured frames from 5 // Implement a DirectShow sink filter used for receiving captured frames from
6 // a DirectShow Capture filter. 6 // a DirectShow Capture filter.
7 7
8 #ifndef MEDIA_VIDEO_CAPTURE_WIN_SINK_FILTER_WIN_H_ 8 #ifndef MEDIA_VIDEO_CAPTURE_WIN_SINK_FILTER_WIN_H_
9 #define MEDIA_VIDEO_CAPTURE_WIN_SINK_FILTER_WIN_H_ 9 #define MEDIA_VIDEO_CAPTURE_WIN_SINK_FILTER_WIN_H_
10 10
11 #include <windows.h> 11 #include <windows.h>
12 #include <stddef.h>
12 13
13 #include "base/macros.h" 14 #include "base/macros.h"
14 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
15 #include "media/base/video_capture_types.h" 16 #include "media/base/video_capture_types.h"
16 #include "media/capture/video/video_capture_device.h" 17 #include "media/capture/video/video_capture_device.h"
17 #include "media/capture/video/win/filter_base_win.h" 18 #include "media/capture/video/win/filter_base_win.h"
18 #include "media/capture/video/win/sink_filter_observer_win.h" 19 #include "media/capture/video/win/sink_filter_observer_win.h"
19 20
20 namespace media { 21 namespace media {
21 22
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 ~SinkFilter() override; 55 ~SinkFilter() override;
55 56
56 scoped_refptr<SinkInputPin> input_pin_; 57 scoped_refptr<SinkInputPin> input_pin_;
57 58
58 DISALLOW_IMPLICIT_CONSTRUCTORS(SinkFilter); 59 DISALLOW_IMPLICIT_CONSTRUCTORS(SinkFilter);
59 }; 60 };
60 61
61 } // namespace media 62 } // namespace media
62 63
63 #endif // MEDIA_VIDEO_CAPTURE_WIN_SINK_FILTER_WIN_H_ 64 #endif // MEDIA_VIDEO_CAPTURE_WIN_SINK_FILTER_WIN_H_
OLDNEW
« no previous file with comments | « media/capture/video/win/sink_filter_observer_win.h ('k') | media/capture/video/win/sink_input_pin_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698