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

Unified Diff: media/audio/audio_manager_base.h

Issue 2867443002: Remove ScopedVector from media/audio/ (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: media/audio/audio_manager_base.h
diff --git a/media/audio/audio_manager_base.h b/media/audio/audio_manager_base.h
index 91a9c8ce17ac495ce3bed344200e66c4a785e41a..38748c567be65d60f6e2bc08ab4cd6504d480e52 100644
--- a/media/audio/audio_manager_base.h
+++ b/media/audio/audio_manager_base.h
@@ -12,7 +12,6 @@
#include "base/compiler_specific.h"
#include "base/macros.h"
-#include "base/memory/scoped_vector.h"
#include "base/observer_list.h"
#include "base/threading/thread.h"
#include "build/build_config.h"
@@ -166,7 +165,7 @@ class MEDIA_EXPORT AudioManagerBase : public AudioManager {
FRIEND_TEST_ALL_PREFIXES(AudioManagerTest, AudioDebugRecording);
struct DispatcherParams;
- typedef ScopedVector<DispatcherParams> AudioOutputDispatchers;
+ typedef std::vector<std::unique_ptr<DispatcherParams>> AudioOutputDispatchers;
class CompareByParams;

Powered by Google App Engine
This is Rietveld 408576698