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

Side by Side Diff: media/blink/webaudiosourceprovider_impl_unittest.cc

Issue 1907973003: media: Move audio_parameters and audio_point to media/base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/base/test_helpers.h ('k') | media/cast/test/fake_media_source.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 <stddef.h>
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
11 #include "media/audio/audio_parameters.h" 11 #include "media/base/audio_parameters.h"
12 #include "media/base/fake_audio_render_callback.h" 12 #include "media/base/fake_audio_render_callback.h"
13 #include "media/base/mock_audio_renderer_sink.h" 13 #include "media/base/mock_audio_renderer_sink.h"
14 #include "media/blink/webaudiosourceprovider_impl.h" 14 #include "media/blink/webaudiosourceprovider_impl.h"
15 #include "testing/gmock/include/gmock/gmock.h" 15 #include "testing/gmock/include/gmock/gmock.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 #include "third_party/WebKit/public/platform/WebAudioSourceProviderClient.h" 17 #include "third_party/WebKit/public/platform/WebAudioSourceProviderClient.h"
18 18
19 using ::testing::_; 19 using ::testing::_;
20 20
21 namespace media { 21 namespace media {
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 Render(bus1.get()); 267 Render(bus1.get());
268 268
269 wasp_impl_->ClearCopyAudioCallback(); 269 wasp_impl_->ClearCopyAudioCallback();
270 EXPECT_CALL(*this, DoCopyAudioCB(_, _, _)).Times(0); 270 EXPECT_CALL(*this, DoCopyAudioCB(_, _, _)).Times(0);
271 Render(bus1.get()); 271 Render(bus1.get());
272 272
273 testing::Mock::VerifyAndClear(mock_sink_.get()); 273 testing::Mock::VerifyAndClear(mock_sink_.get());
274 } 274 }
275 275
276 } // namespace media 276 } // namespace media
OLDNEW
« no previous file with comments | « media/base/test_helpers.h ('k') | media/cast/test/fake_media_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698