summaryrefslogtreecommitdiffstats
path: root/chrome/browser/speech/speech_input_dispatcher_host.cc
diff options
context:
space:
mode:
authorsatish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-06 15:08:05 +0000
committersatish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-06 15:08:05 +0000
commit71cc21bb16d17c79b51d10fa4ad54ddfc2d3c8c1 (patch)
treebd7e8a0f4f27863bb2c376b9eddb7dc6fa1999b5 /chrome/browser/speech/speech_input_dispatcher_host.cc
parenta07790009cbd384861f39bcebc36191d07eb4792 (diff)
downloadchromium_src-71cc21bb16d17c79b51d10fa4ad54ddfc2d3c8c1.zip
chromium_src-71cc21bb16d17c79b51d10fa4ad54ddfc2d3c8c1.tar.gz
chromium_src-71cc21bb16d17c79b51d10fa4ad54ddfc2d3c8c1.tar.bz2
Added more logging to debug a test which fails in the build bots.
This test times out regularly in the vista build bots and infrequently in others. I added some logs earlier and making progress, so adding more logs to narrow down the issue. BUG=51337 TEST=none Review URL: http://codereview.chromium.org/3618008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61642 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/speech/speech_input_dispatcher_host.cc')
-rw-r--r--chrome/browser/speech/speech_input_dispatcher_host.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/speech/speech_input_dispatcher_host.cc b/chrome/browser/speech/speech_input_dispatcher_host.cc
index 52409b1..7532e09 100644
--- a/chrome/browser/speech/speech_input_dispatcher_host.cc
+++ b/chrome/browser/speech/speech_input_dispatcher_host.cc
@@ -181,7 +181,7 @@ void SpeechInputDispatcherHost::SetRecognitionResult(int caller_id,
}
void SpeechInputDispatcherHost::DidCompleteRecording(int caller_id) {
- LOG(INFO) << "SpeechInputDispatcherHost::DidCompleteRecording exit";
+ LOG(INFO) << "SpeechInputDispatcherHost::DidCompleteRecording enter";
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
int caller_render_view_id = callers_->render_view_id(caller_id);
int caller_request_id = callers_->request_id(caller_id);
@@ -193,7 +193,7 @@ void SpeechInputDispatcherHost::DidCompleteRecording(int caller_id) {
}
void SpeechInputDispatcherHost::DidCompleteRecognition(int caller_id) {
- LOG(INFO) << "SpeechInputDispatcherHost::DidCompleteRecognition exit";
+ LOG(INFO) << "SpeechInputDispatcherHost::DidCompleteRecognition enter";
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
int caller_render_view_id = callers_->render_view_id(caller_id);
int caller_request_id = callers_->request_id(caller_id);