| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "media/cast/rtp_common/mock_rtp_payload_feedback.h" | 5 // Utility functions for crypto testing. |
| 6 |
| 7 #include "media/cast/cast_config.h" |
| 6 | 8 |
| 7 namespace media { | 9 namespace media { |
| 8 namespace cast { | 10 namespace cast { |
| 9 | 11 |
| 10 MockRtpPayloadFeedback::MockRtpPayloadFeedback() { | 12 // Convert to a binary string from a base 16 string. |
| 11 } | 13 std::string ConvertFromBase16String(const std::string base_16); |
| 12 | |
| 13 MockRtpPayloadFeedback::~MockRtpPayloadFeedback() { | |
| 14 } | |
| 15 | 14 |
| 16 } // namespace cast | 15 } // namespace cast |
| 17 } // namespace media | 16 } // namespace media |
| 17 |
| OLD | NEW |