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

Side by Side Diff: media/cast/test/fake_media_source.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 5 years 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/cast/test/end2end_unittest.cc ('k') | media/cast/test/linux_output_window.cc » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // A fake media source that generates video and audio frames to a cast 5 // A fake media source that generates video and audio frames to a cast
6 // sender. 6 // sender.
7 // This class can transcode a WebM file using FFmpeg. It can also 7 // This class can transcode a WebM file using FFmpeg. It can also
8 // generate an animation and audio of fixed frequency. 8 // generate an animation and audio of fixed frequency.
9 9
10 #ifndef MEDIA_CAST_TEST_FAKE_MEDIA_SOURCE_H_ 10 #ifndef MEDIA_CAST_TEST_FAKE_MEDIA_SOURCE_H_
11 #define MEDIA_CAST_TEST_FAKE_MEDIA_SOURCE_H_ 11 #define MEDIA_CAST_TEST_FAKE_MEDIA_SOURCE_H_
12 12
13 #include <stdint.h>
14
13 #include <queue> 15 #include <queue>
14 16
15 #include "base/files/file_path.h" 17 #include "base/files/file_path.h"
16 #include "base/files/memory_mapped_file.h" 18 #include "base/files/memory_mapped_file.h"
17 #include "base/macros.h" 19 #include "base/macros.h"
18 #include "base/memory/ref_counted.h" 20 #include "base/memory/ref_counted.h"
19 #include "base/memory/weak_ptr.h" 21 #include "base/memory/weak_ptr.h"
20 #include "base/single_thread_task_runner.h" 22 #include "base/single_thread_task_runner.h"
21 #include "base/time/tick_clock.h" 23 #include "base/time/tick_clock.h"
22 #include "media/audio/audio_parameters.h" 24 #include "media/audio/audio_parameters.h"
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 // NOTE: Weak pointers must be invalidated before all other member variables. 168 // NOTE: Weak pointers must be invalidated before all other member variables.
167 base::WeakPtrFactory<FakeMediaSource> weak_factory_; 169 base::WeakPtrFactory<FakeMediaSource> weak_factory_;
168 170
169 DISALLOW_COPY_AND_ASSIGN(FakeMediaSource); 171 DISALLOW_COPY_AND_ASSIGN(FakeMediaSource);
170 }; 172 };
171 173
172 } // namespace cast 174 } // namespace cast
173 } // namespace media 175 } // namespace media
174 176
175 #endif // MEDIA_CAST_TEST_FAKE_MEDIA_SOURCE_H_ 177 #endif // MEDIA_CAST_TEST_FAKE_MEDIA_SOURCE_H_
OLDNEW
« no previous file with comments | « media/cast/test/end2end_unittest.cc ('k') | media/cast/test/linux_output_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698