Bug 929005 - Change from android::Vector to android::List. r=doublec

This commit is contained in:
Sotaro Ikeda 2013-11-08 09:09:46 -05:00
Родитель 82360aea08
Коммит a65953798c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -73,7 +73,7 @@ protected:
// The lock protects mVideoDecoderSlots and mVideoCodecRequestQueue called // The lock protects mVideoDecoderSlots and mVideoCodecRequestQueue called
// from multiple threads. // from multiple threads.
Mutex mLock; Mutex mLock;
typedef Vector<sp<IBinder> > Fifo; typedef List<sp<IBinder> > Fifo;
// Queue of media resource requests. // Queue of media resource requests.
// Hold IMediaResourceManagerClient that requesting a media resource as IBinder. // Hold IMediaResourceManagerClient that requesting a media resource as IBinder.
Fifo mVideoCodecRequestQueue; Fifo mVideoCodecRequestQueue;