summaryrefslogtreecommitdiff
path: root/src/activity_replay.cc
diff options
context:
space:
mode:
authorDaniel Kurtz <djkurtz@chromium.org>2012-06-05 11:58:56 +0800
committerGerrit <chrome-bot@google.com>2012-06-06 20:57:44 -0700
commitac0daa2af34ffcb1e0a2c230003ccc513a51d48c (patch)
treeff230a46f12d48c6c4cb1d30d3cea8c4633cc273 /src/activity_replay.cc
parentdd5997cfffa36ec25f815d05e06d97b979df00ec (diff)
downloadlibchrome-gestures-ac0daa2af34ffcb1e0a2c230003ccc513a51d48c.tar.gz
ActivityReplay: fix typo
BUG=none TEST=none Change-Id: I00ff8b224ab34913c22307030d2123e05d491118 Reviewed-on: https://gerrit.chromium.org/gerrit/24672 Reviewed-by: Joseph Shyh-In Hwang <josephsih@chromium.org> Tested-by: Joseph Shyh-In Hwang <josephsih@chromium.org> Commit-Ready: Daniel Kurtz <djkurtz@chromium.org> Reviewed-by: Daniel Kurtz <djkurtz@chromium.org> Tested-by: Daniel Kurtz <djkurtz@chromium.org>
Diffstat (limited to 'src/activity_replay.cc')
-rw-r--r--src/activity_replay.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/activity_replay.cc b/src/activity_replay.cc
index 4275305..16c9b72 100644
--- a/src/activity_replay.cc
+++ b/src/activity_replay.cc
@@ -490,7 +490,7 @@ bool ActivityReplay::Replay(Interpreter* interpreter) {
Log("Input Finger ID: %d", hs.fingers[i].tracking_id);
last_gs = interpreter->SyncInterpret(&hs, &last_timeout_req);
if (last_gs)
- Log("Ouput Gesture: %s", last_gs->String().c_str());
+ Log("Output Gesture: %s", last_gs->String().c_str());
break;
}
case ActivityLog::kTimerCallback:
@@ -498,7 +498,7 @@ bool ActivityReplay::Replay(Interpreter* interpreter) {
last_gs = interpreter->HandleTimer(entry->details.timestamp,
&last_timeout_req);
if (last_gs)
- Log("Ouput Gesture: %s", last_gs->String().c_str());
+ Log("Output Gesture: %s", last_gs->String().c_str());
break;
case ActivityLog::kCallbackRequest:
if (!DoubleEq(last_timeout_req, entry->details.timestamp)) {