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

Unified Diff: media/cast/test/crypto_utility.h

Issue 62843002: Cast: Added support for AES-CTR crypto. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 7 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: media/cast/test/crypto_utility.h
diff --git a/media/cast/rtp_common/mock_rtp_payload_feedback.cc b/media/cast/test/crypto_utility.h
similarity index 55%
copy from media/cast/rtp_common/mock_rtp_payload_feedback.cc
copy to media/cast/test/crypto_utility.h
index 28b0b025a971088c9cc934c8450f0ec90b3ad792..21f8c7f914a161efd40eff06fdfb274fef608596 100644
--- a/media/cast/rtp_common/mock_rtp_payload_feedback.cc
+++ b/media/cast/test/crypto_utility.h
@@ -2,16 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "media/cast/rtp_common/mock_rtp_payload_feedback.h"
+// Utility functions for crypto testing.
+
+#include "media/cast/cast_config.h"
namespace media {
namespace cast {
-MockRtpPayloadFeedback::MockRtpPayloadFeedback() {
-}
-
-MockRtpPayloadFeedback::~MockRtpPayloadFeedback() {
-}
+// Convert to a binary string from a base 16 string.
+std::string ConvertFromBase16String(const std::string base_16);
wtc 2013/11/13 20:57:17 Nit: Base16String => HexString? IMPORTANT: this f
pwestin 2013/11/15 19:38:17 Done.
} // namespace cast
} // namespace media
+

Powered by Google App Engine
This is Rietveld 408576698