Chromium Code Reviews| Index: content/common/page_messages.h |
| diff --git a/content/common/page_messages.h b/content/common/page_messages.h |
| index afe62b8a24acd99de70faca9f017abdcf5b97603..5445d90708b8405041e84454c581f9d8bbbf69c2 100644 |
| --- a/content/common/page_messages.h |
| +++ b/content/common/page_messages.h |
| @@ -27,6 +27,12 @@ IPC_MESSAGE_ROUTED2(PageMsg_SetZoomLevel, |
| PageMsg_SetZoomLevel_Command /* command */, |
| double /* zoom_level */) |
| +// Informs the renderer that the page was hidden. |
| +IPC_MESSAGE_ROUTED0(PageMsg_WasHidden) |
|
dcheng
2016/05/24 20:38:23
I know the existing messages are called ViewMsg_Wa
lfg
2016/05/24 23:33:50
I could change that to a single message that has a
|
| + |
| +// Informs the renderer the the page is not longer hidden. |
|
kenrb
2016/05/24 20:25:18
nit: "the the" -> "that the", "not longer" -> "no
lfg
2016/05/24 23:33:50
Done.
|
| +IPC_MESSAGE_ROUTED0(PageMsg_WasShown) |
| + |
| // ----------------------------------------------------------------------------- |
| // Messages sent from the renderer to the browser. |