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

Unified Diff: media/formats/webm/opus_packet_builder.h

Issue 2895573002: Reland of Remove ScopedVector from all other codes in media/ (Closed)
Patch Set: Fix the compile fails in build target "jpeg_decode_accelerator_unittest" 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
« no previous file with comments | « media/cdm/ppapi/external_clear_key/clear_key_cdm.cc ('k') | media/formats/webm/opus_packet_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/webm/opus_packet_builder.h
diff --git a/media/formats/webm/opus_packet_builder.h b/media/formats/webm/opus_packet_builder.h
index 5f824015f03ea80c7821e13514dde608b54e347e..77e5f2a9597898a857db1fae03ddb6d9aa307aef 100644
--- a/media/formats/webm/opus_packet_builder.h
+++ b/media/formats/webm/opus_packet_builder.h
@@ -11,7 +11,6 @@
#include <vector>
#include "base/macros.h"
-#include "base/memory/scoped_vector.h"
namespace media {
@@ -39,7 +38,7 @@ class OpusPacket {
};
// Builds an exhaustive collection of Opus packet configurations.
-ScopedVector<OpusPacket> BuildAllOpusPackets();
+std::vector<std::unique_ptr<OpusPacket>> BuildAllOpusPackets();
} // namespace media
« no previous file with comments | « media/cdm/ppapi/external_clear_key/clear_key_cdm.cc ('k') | media/formats/webm/opus_packet_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698