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

Side by Side Diff: components/audio_modem/audio_player_impl.h

Issue 1917053003: unique_ptr_migration: clean up references to scoped_ptr as of r389721 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 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
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 COMPONENTS_AUDIO_MODEM_AUDIO_PLAYER_IMPL_H_ 5 #ifndef COMPONENTS_AUDIO_MODEM_AUDIO_PLAYER_IMPL_H_
6 #define COMPONENTS_AUDIO_MODEM_AUDIO_PLAYER_IMPL_H_ 6 #define COMPONENTS_AUDIO_MODEM_AUDIO_PLAYER_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/gtest_prod_util.h" 13 #include "base/gtest_prod_util.h"
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
16 #include "base/memory/scoped_ptr.h"
17 #include "base/synchronization/lock.h" 16 #include "base/synchronization/lock.h"
18 #include "components/audio_modem/audio_player.h" 17 #include "components/audio_modem/audio_player.h"
19 #include "media/audio/audio_io.h" 18 #include "media/audio/audio_io.h"
20 19
21 namespace media { 20 namespace media {
22 class AudioBus; 21 class AudioBus;
23 class AudioBusRefCounted; 22 class AudioBusRefCounted;
24 } 23 }
25 24
26 namespace audio_modem { 25 namespace audio_modem {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 80
82 // Index to the frame in the samples that we need to play next. 81 // Index to the frame in the samples that we need to play next.
83 int frame_index_; 82 int frame_index_;
84 83
85 DISALLOW_COPY_AND_ASSIGN(AudioPlayerImpl); 84 DISALLOW_COPY_AND_ASSIGN(AudioPlayerImpl);
86 }; 85 };
87 86
88 } // namespace audio_modem 87 } // namespace audio_modem
89 88
90 #endif // COMPONENTS_AUDIO_MODEM_AUDIO_PLAYER_IMPL_H_ 89 #endif // COMPONENTS_AUDIO_MODEM_AUDIO_PLAYER_IMPL_H_
OLDNEW
« no previous file with comments | « chrome_elf/blacklist/test/blacklist_test.cc ('k') | components/page_load_metrics/browser/metrics_web_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698