am f5ccdcd5: am d82c7daf: am 4608b9d9: Fix build breakage

* commit 'f5ccdcd5adc653f9b0e39b7d17fc758542866800':
  Fix build breakage
This commit is contained in:
Youngsang Cho
2014-09-11 17:28:54 +00:00
committed by Android Git Automerger

View File

@@ -535,7 +535,7 @@ public final class TvInputManager {
mHandler.post(new Runnable() {
@Override
public void run() {
mListener.onInputUpdated(inputId);
mCallback.onInputUpdated(inputId);
}
});
}
@@ -732,7 +732,7 @@ public final class TvInputManager {
@Override
public void onInputUpdated(String inputId) {
synchronized (mLock) {
for (TvInputListenerRecord record : mTvInputListenerRecordsList) {
for (TvInputCallbackRecord record : mCallbackRecords) {
record.postInputUpdated(inputId);
}
}