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

Side by Side Diff: media/cast/sender/audio_encoder_unittest.cc

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/sender/audio_encoder.cc ('k') | media/cast/sender/audio_sender_unittest.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 #include <stddef.h>
5 #include <stdint.h> 6 #include <stdint.h>
6 7
7 #include <sstream> 8 #include <sstream>
8 #include <string> 9 #include <string>
9 10
10 #include "base/bind.h" 11 #include "base/bind.h"
11 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
13 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "build/build_config.h"
13 #include "media/base/audio_bus.h" 16 #include "media/base/audio_bus.h"
14 #include "media/base/media.h" 17 #include "media/base/media.h"
15 #include "media/cast/cast_config.h" 18 #include "media/cast/cast_config.h"
16 #include "media/cast/cast_environment.h" 19 #include "media/cast/cast_environment.h"
17 #include "media/cast/sender/audio_encoder.h" 20 #include "media/cast/sender/audio_encoder.h"
18 #include "media/cast/test/fake_single_thread_task_runner.h" 21 #include "media/cast/test/fake_single_thread_task_runner.h"
19 #include "media/cast/test/utility/audio_utility.h" 22 #include "media/cast/test/utility/audio_utility.h"
20 #include "testing/gtest/include/gtest/gtest.h" 23 #include "testing/gtest/include/gtest/gtest.h"
21 24
22 namespace media { 25 namespace media {
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 TestScenario(kManyCalls_Mixed2, arraysize(kManyCalls_Mixed2)), 247 TestScenario(kManyCalls_Mixed2, arraysize(kManyCalls_Mixed2)),
245 TestScenario(kManyCalls_Mixed3, arraysize(kManyCalls_Mixed3)), 248 TestScenario(kManyCalls_Mixed3, arraysize(kManyCalls_Mixed3)),
246 TestScenario(kManyCalls_Mixed4, arraysize(kManyCalls_Mixed4)), 249 TestScenario(kManyCalls_Mixed4, arraysize(kManyCalls_Mixed4)),
247 TestScenario(kManyCalls_Mixed5, arraysize(kManyCalls_Mixed5)), 250 TestScenario(kManyCalls_Mixed5, arraysize(kManyCalls_Mixed5)),
248 TestScenario(kOneBigUnderrun, arraysize(kOneBigUnderrun)), 251 TestScenario(kOneBigUnderrun, arraysize(kOneBigUnderrun)),
249 TestScenario(kTwoBigUnderruns, arraysize(kTwoBigUnderruns)), 252 TestScenario(kTwoBigUnderruns, arraysize(kTwoBigUnderruns)),
250 TestScenario(kMixedUnderruns, arraysize(kMixedUnderruns)))); 253 TestScenario(kMixedUnderruns, arraysize(kMixedUnderruns))));
251 254
252 } // namespace cast 255 } // namespace cast
253 } // namespace media 256 } // namespace media
OLDNEW
« no previous file with comments | « media/cast/sender/audio_encoder.cc ('k') | media/cast/sender/audio_sender_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698