cast_browser_interface_binders.h 694 B

123456789101112131415161718192021222324
  1. // Copyright 2019 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 CHROMECAST_BROWSER_CAST_BROWSER_INTERFACE_BINDERS_H_
  5. #define CHROMECAST_BROWSER_CAST_BROWSER_INTERFACE_BINDERS_H_
  6. #include "mojo/public/cpp/bindings/binder_map.h"
  7. namespace content {
  8. class RenderFrameHost;
  9. }
  10. namespace chromecast {
  11. namespace shell {
  12. void PopulateCastFrameBinders(
  13. content::RenderFrameHost* render_frame_host,
  14. mojo::BinderMapWithContext<content::RenderFrameHost*>* binder_map);
  15. } // namespace shell
  16. } // namespace chromecast
  17. #endif // CHROMECAST_BROWSER_CAST_BROWSER_INTERFACE_BINDERS_H_