Skip to content

Commit 36bac5b

Browse files
sleeviCommit Bot
authored and
Commit Bot
committed
Fix Markdown Syntax issues in IPC docs
Bug: None Change-Id: I059661fde35652c0fc867bcc60b02bfad3e178d6 Reviewed-on: https://chromium-review.googlesource.com/1026488 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Ryan Sleevi <rsleevi@chromium.org> Cr-Commit-Position: refs/heads/master@{#553637}
1 parent 6329dc2 commit 36bac5b

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

ipc/README.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -369,13 +369,11 @@ it.
369369

370370
Depending on what resources you need access to, the main classes are:
371371

372-
| Renderer Class | Corresponding Browser Class | Explanation |
373-
|-----------------|-----------------------------|-------------------------------------------------------------------------------------------------------------------|
374-
| `RenderFrame` | `RenderFrameHost` | A single frame. Use this for frame-to-frame messages. |
375-
| `RenderView` | `RenderViewHost` | A view (conceptually a 'tab'). You cannot send Mojo messages to a `RenderView` directly, since frames in a tab can
376-
be in multiple processes (and the classes are deprecated). Migrate these to `RenderFrame` instead, or see section
377-
[Migrating IPC calls to `RenderView` or `RenderViewHost`](#UMigrating-IPC-calls-to-RenderView-or-RenderViewHost). |
378-
| `RenderProcess` | `RenderProcessHost` | A process, containing multiple frames (probably from the same origin, but not always). |
372+
| Renderer Class | Corresponding Browser Class | Explanation |
373+
|-----------------|-----------------------------|--------------------------------------------------------------------------------------------------------------------|
374+
| `RenderFrame` | `RenderFrameHost` | A single frame. Use this for frame-to-frame messages. |
375+
| `RenderView` | `RenderViewHost` | A view (conceptually a 'tab'). You cannot send Mojo messages to a `RenderView` directly, since frames in a tab can be in multiple processes (and the classes are deprecated). Migrate these to `RenderFrame` instead, or see section [Migrating IPC calls to `RenderView` or `RenderViewHost`](#UMigrating-IPC-calls-to-RenderView-or-RenderViewHost). |
376+
| `RenderProcess` | `RenderProcessHost` | A process, containing multiple frames (probably from the same origin, but not always). |
379377

380378
**NOTE:** Previously, classes that ended with `Host` were implemented on the
381379
browser side; the equivalent classes on the renderer side had the same name
@@ -719,7 +717,6 @@ the wire format used is defined entirely by `IPC::ParamTraits<T>` for whatever
719717
`foo::mojom::MyGiganticStructure` to `foo::MyGiganticStructure`, your typemap
720718
must point to some header which defines
721719
`IPC::ParamTraits<foo::MyGiganticStructure>`.
722-
```
723720

724721
There are several examples of this traits implementation in common IPC traits
725722
defined [here](https://code.google.com/p/chromium/codesearch#chromium/src/ipc/ipc_message_utils.h).

0 commit comments

Comments
 (0)