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

Side by Side Diff: media/muxers/webm_muxer.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 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 unified diff | Download patch
« no previous file with comments | « media/midi/usb_midi_device.h ('k') | mojo/services/catalog/store.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 MEDIA_MUXERS_WEBM_MUXER_H_ 5 #ifndef MEDIA_MUXERS_WEBM_MUXER_H_
6 #define MEDIA_MUXERS_WEBM_MUXER_H_ 6 #define MEDIA_MUXERS_WEBM_MUXER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <deque> 10 #include <deque>
11 11
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/memory/scoped_ptr.h"
14 #include "base/numerics/safe_math.h" 15 #include "base/numerics/safe_math.h"
15 #include "base/strings/string_piece.h" 16 #include "base/strings/string_piece.h"
16 #include "base/threading/thread_checker.h" 17 #include "base/threading/thread_checker.h"
17 #include "base/time/time.h" 18 #include "base/time/time.h"
18 #include "base/timer/elapsed_timer.h" 19 #include "base/timer/elapsed_timer.h"
19 #include "media/base/media_export.h" 20 #include "media/base/media_export.h"
20 #include "media/base/video_codecs.h" 21 #include "media/base/video_codecs.h"
21 #include "third_party/libwebm/source/mkvmuxer.hpp" 22 #include "third_party/libwebm/source/mkvmuxer.hpp"
22 23
23 namespace gfx { 24 namespace gfx {
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 DISALLOW_IMPLICIT_CONSTRUCTORS(EncodedVideoFrame); 142 DISALLOW_IMPLICIT_CONSTRUCTORS(EncodedVideoFrame);
142 }; 143 };
143 std::deque<scoped_ptr<EncodedVideoFrame>> encoded_frames_queue_; 144 std::deque<scoped_ptr<EncodedVideoFrame>> encoded_frames_queue_;
144 145
145 DISALLOW_COPY_AND_ASSIGN(WebmMuxer); 146 DISALLOW_COPY_AND_ASSIGN(WebmMuxer);
146 }; 147 };
147 148
148 } // namespace media 149 } // namespace media
149 150
150 #endif // MEDIA_MUXERS_WEBM_MUXER_H_ 151 #endif // MEDIA_MUXERS_WEBM_MUXER_H_
OLDNEW
« no previous file with comments | « media/midi/usb_midi_device.h ('k') | mojo/services/catalog/store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698