summaryrefslogtreecommitdiffstats
path: root/content/browser/speech/google_streaming_remote_engine.cc
diff options
context:
space:
mode:
authormohan.reddy <mohan.reddy@samsung.com>2014-10-06 22:50:23 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-07 05:50:42 +0000
commitd7f545eacae6e1456c3d7e78c38c5a68239c453f (patch)
tree7b6c0b01c5bb9685354f98a8e6e7a1fa48f5e538 /content/browser/speech/google_streaming_remote_engine.cc
parentd23d9adf5478bb45d70f37502c39462d439f609c (diff)
downloadchromium_src-d7f545eacae6e1456c3d7e78c38c5a68239c453f.zip
chromium_src-d7f545eacae6e1456c3d7e78c38c5a68239c453f.tar.gz
chromium_src-d7f545eacae6e1456c3d7e78c38c5a68239c453f.tar.bz2
Replacing the OVERRIDE with override and FINAL with final in content/browser/speech
This step is a giant search and replace for OVERRIDE and FINAL to replace them with their lowercase versions. BUG=417463 Review URL: https://codereview.chromium.org/631083002 Cr-Commit-Position: refs/heads/master@{#298388}
Diffstat (limited to 'content/browser/speech/google_streaming_remote_engine.cc')
-rw-r--r--content/browser/speech/google_streaming_remote_engine.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/speech/google_streaming_remote_engine.cc b/content/browser/speech/google_streaming_remote_engine.cc
index f9e2e6e..7fea0fa 100644
--- a/content/browser/speech/google_streaming_remote_engine.cc
+++ b/content/browser/speech/google_streaming_remote_engine.cc
@@ -53,7 +53,7 @@ void DumpResponse(const std::string& response) {
DVLOG(1) << "RESULT #" << i << ":";
const proto::SpeechRecognitionResult& res = event.result(i);
if (res.has_final())
- DVLOG(1) << " FINAL:\t" << res.final();
+ DVLOG(1) << " final:\t" << res.final();
if (res.has_stability())
DVLOG(1) << " STABILITY:\t" << res.stability();
for (int j = 0; j < res.alternative_size(); ++j) {