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

Unified Diff: chrome/browser/media/webrtc_rtp_dump_handler_unittest.cc

Issue 1469783002: Cleanup: Correctly spell success(ful). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format media Created 5 years, 1 month 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
Index: chrome/browser/media/webrtc_rtp_dump_handler_unittest.cc
diff --git a/chrome/browser/media/webrtc_rtp_dump_handler_unittest.cc b/chrome/browser/media/webrtc_rtp_dump_handler_unittest.cc
index 23a0a4fbba338af1f94142cc91be128af5e49c38..6fefb3fc7cd6562690753844a2708a105a2c4de6 100644
--- a/chrome/browser/media/webrtc_rtp_dump_handler_unittest.cc
+++ b/chrome/browser/media/webrtc_rtp_dump_handler_unittest.cc
@@ -42,17 +42,17 @@ class FakeDumpWriter : public WebRtcRtpDumpWriter {
void EndDump(RtpDumpType type,
const EndDumpCallback& finished_callback) override {
- bool incoming_sucess = end_dump_success_;
+ bool incoming_success = end_dump_success_;
bool outgoing_success = end_dump_success_;
if (type == RTP_DUMP_INCOMING)
outgoing_success = false;
else if (type == RTP_DUMP_OUTGOING)
- incoming_sucess = false;
+ incoming_success = false;
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
- base::Bind(finished_callback, incoming_sucess, outgoing_success));
+ base::Bind(finished_callback, incoming_success, outgoing_success));
}
private:

Powered by Google App Engine
This is Rietveld 408576698