browser_exposed_renderer_interfaces.h 675 B

123456789101112131415161718192021
  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 ANDROID_WEBVIEW_RENDERER_BROWSER_EXPOSED_RENDERER_INTERFACES_H_
  5. #define ANDROID_WEBVIEW_RENDERER_BROWSER_EXPOSED_RENDERER_INTERFACES_H_
  6. namespace mojo {
  7. class BinderMap;
  8. } // namespace mojo
  9. namespace android_webview {
  10. class AwContentRendererClient;
  11. void ExposeRendererInterfacesToBrowser(AwContentRendererClient* client,
  12. mojo::BinderMap* binders);
  13. } // namespace android_webview
  14. #endif // ANDROID_WEBVIEW_RENDERER_BROWSER_EXPOSED_RENDERER_INTERFACES_H_