Index: ui/app_list/views/speech_view.cc |
diff --git a/ui/app_list/views/speech_view.cc b/ui/app_list/views/speech_view.cc |
index c6bad7c4549b49784b51a01cca22d7698f78adab..c9b37919ff1373e8840a4122582232bd44af54c3 100644 |
--- a/ui/app_list/views/speech_view.cc |
+++ b/ui/app_list/views/speech_view.cc |
@@ -209,7 +209,7 @@ void SpeechView::OnSpeechResult(const base::string16& result, |
void SpeechView::OnSpeechRecognitionStateChanged( |
SpeechRecognitionState new_state) { |
int resource_id = IDR_APP_LIST_SPEECH_MIC_OFF; |
- if (new_state == SPEECH_RECOGNITION_ON) |
+ if (new_state == SPEECH_RECOGNITION_RECOGNIZING) |
resource_id = IDR_APP_LIST_SPEECH_MIC_ON; |
else if (new_state == SPEECH_RECOGNITION_IN_SPEECH) |
resource_id = IDR_APP_LIST_SPEECH_MIC_RECORDING; |