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 |
+ |