extensions_browser_interface_binders.h 727 B

12345678910111213141516171819202122232425
  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 EXTENSIONS_BROWSER_EXTENSIONS_BROWSER_INTERFACE_BINDERS_H_
  5. #define EXTENSIONS_BROWSER_EXTENSIONS_BROWSER_INTERFACE_BINDERS_H_
  6. #include "mojo/public/cpp/bindings/binder_map.h"
  7. namespace content {
  8. class RenderFrameHost;
  9. }
  10. namespace extensions {
  11. class Extension;
  12. void PopulateExtensionFrameBinders(
  13. mojo::BinderMapWithContext<content::RenderFrameHost*>* binder_map,
  14. content::RenderFrameHost* render_frame_host,
  15. const Extension* extension);
  16. } // namespace extensions
  17. #endif // EXTENSIONS_BROWSER_EXTENSIONS_BROWSER_INTERFACE_BINDERS_H_