am 52ee6350: Merge "Mark fields const if only set in constructor"

* commit '52ee6350390ccbe000b9bf8c2637a968d7951c33':
  Mark fields const if only set in constructor
This commit is contained in:
Glenn Kasten
2012-02-10 15:33:47 -08:00
committed by Android Git Automerger

View File

@@ -72,9 +72,9 @@ protected:
AudioResampler(const AudioResampler&);
AudioResampler& operator=(const AudioResampler&);
int32_t mBitDepth;
int32_t mChannelCount;
int32_t mSampleRate;
const int32_t mBitDepth;
const int32_t mChannelCount;
const int32_t mSampleRate;
int32_t mInSampleRate;
AudioBufferProvider::Buffer mBuffer;
union {