Merge "Make sure the ThrottledSource reports the proper mime type"

This commit is contained in:
Andreas Huber
2012-01-19 14:40:44 -08:00
committed by Android (Google) Code Review

View File

@@ -35,6 +35,11 @@ struct ThrottledSource : public DataSource {
virtual status_t getSize(off64_t *size);
virtual uint32_t flags();
virtual String8 getMIMEType() const {
return mSource->getMIMEType();
}
private:
Mutex mLock;