Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1138)

Unified Diff: content/renderer/speech_recognition_dispatcher.cc

Issue 11740038: Cleanup: Fix some lint errors in content/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | content/renderer/web_intents_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/speech_recognition_dispatcher.cc
===================================================================
--- content/renderer/speech_recognition_dispatcher.cc (revision 175088)
+++ content/renderer/speech_recognition_dispatcher.cc (working copy)
@@ -149,9 +149,10 @@
recognizer_client_->didReceiveNoMatch(GetHandleFromID(request_id),
WebSpeechRecognitionResult());
} else {
- recognizer_client_->didReceiveError(GetHandleFromID(request_id),
- WebString(), // TODO(primiano): message?
- WebKitErrorCode(error.code));
+ recognizer_client_->didReceiveError(
+ GetHandleFromID(request_id),
+ WebString(), // TODO(primiano): message?
+ WebKitErrorCode(error.code));
}
}
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | content/renderer/web_intents_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698