0

[mojo][doc] DocumentInterfaceBroker -> BrowserInterfaceBroker

Change-Id: I7ecb680714be3a4459fb49bb8290eec66d5295a8
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1816447
Reviewed-by: Ken Rockot <rockot@google.com>
Commit-Queue: Oksana Zhuravlova <oksamyt@chromium.org>
Cr-Commit-Position: refs/heads/master@{#699004}
This commit is contained in:
Oksana Zhuravlova
2019-09-23 19:56:27 +00:00
committed by Commit Bot
parent fcd2efb881
commit cf17005c28

@ -217,13 +217,13 @@ decide how to proceed:
- If the message is sent from a renderer to the browser:
- If an existing interface is bound by `RenderFrameHostImpl` and
acquired either via `RenderFrame::GetRemoteInterfaces` or
`RenderFrame::GetDocumentInterfaceBroker` and the interface seems
`RenderFrame::GetBrowserInterfaceBroker` and the interface seems
to be a good fit for this message, add the equivalent Mojo message
to that interface.
- If no such interface exists, consider adding one and exposing it
via a new getter method on `DocumentInterfaceBroker`. See the
- If no such interface exists, consider adding one and registering it
with `RenderFrameHostImpl`'s `BrowserInterfaceBroker`. See the
[simple example](/docs/mojo_and_services.md#Example_Defining-a-New-Frame-Interface)
earlier in this document.
in the "Intro to Mojo & Services" document.
- If the message is sent from the browser to a renderer, consider
adding a Mojo equivalent to the `content.mojom.Frame` interface
defined