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

Unified Diff: media/video/capture/win/sink_input_pin_win.cc

Issue 1210013007: clang/win: Fix warnings to prepare for building without -Wno-reorder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-unsequenced
Patch Set: Created 5 years, 6 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/audio/win/waveout_output_win.cc ('k') | net/base/file_stream_context_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/video/capture/win/sink_input_pin_win.cc
diff --git a/media/video/capture/win/sink_input_pin_win.cc b/media/video/capture/win/sink_input_pin_win.cc
index bc08809a671a26e1df706cf2ff31a1820cb78fa2..0edd46f34f590e56102af44927d4c60c57b8b295 100644
--- a/media/video/capture/win/sink_input_pin_win.cc
+++ b/media/video/capture/win/sink_input_pin_win.cc
@@ -21,11 +21,8 @@ static DWORD GetArea(const BITMAPINFOHEADER& info_header) {
return info_header.biWidth * info_header.biHeight;
}
-SinkInputPin::SinkInputPin(IBaseFilter* filter,
- SinkFilterObserver* observer)
- : requested_frame_rate_(0),
- observer_(observer),
- PinBase(filter) {
+SinkInputPin::SinkInputPin(IBaseFilter* filter, SinkFilterObserver* observer)
+ : PinBase(filter), requested_frame_rate_(0), observer_(observer) {
}
void SinkInputPin::SetRequestedMediaFormat(
« no previous file with comments | « media/audio/win/waveout_output_win.cc ('k') | net/base/file_stream_context_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698