test_utils.h 524 B

12345678910111213141516171819
  1. // Copyright 2020 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef MEDIA_REMOTING_TEST_UTILS_H_
  5. #define MEDIA_REMOTING_TEST_UTILS_H_
  6. namespace media {
  7. namespace remoting {
  8. class ReceiverController;
  9. // Friend function for resetting the mojo binding in ReceiverController.
  10. void ResetForTesting(ReceiverController* controller);
  11. } // namespace remoting
  12. } // namespace media
  13. #endif // MEDIA_REMOTING_TEST_UTILS_H_