| Index: content/common/view_messages.h
|
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h
|
| index c49dcab64672de0a51940c3e6f9eb5990fd35291..50a371e3a6d0d7dca494a9b94d4cfe1c4951f45c 100644
|
| --- a/content/common/view_messages.h
|
| +++ b/content/common/view_messages.h
|
| @@ -1238,6 +1238,9 @@ IPC_MESSAGE_ROUTED2(ViewMsg_SavePageAsMHTML,
|
| int /* job_id */,
|
| IPC::PlatformFileForTransit /* file handle */)
|
|
|
| +// Exit fullscreen.
|
| +IPC_MESSAGE_ROUTED0(ViewMsg_ExitFullscreen)
|
| +
|
| // Messages sent from the renderer to the browser.
|
|
|
| // Sent by the renderer when it is creating a new window. The browser creates
|
| @@ -2050,6 +2053,11 @@ IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting,
|
| std::string, /* key */
|
| std::string /* value */)
|
|
|
| +// Puts the browser into "tab fullscreen" mode for the sending renderer.
|
| +// See the comment in chrome/browser/ui/browser.h for more details.
|
| +IPC_MESSAGE_ROUTED1(ViewHostMsg_ToggleFullscreen,
|
| + bool /* enter_fullscreen */)
|
| +
|
| // Send back a string to be recorded by UserMetrics.
|
| IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction,
|
| std::string /* action */)
|
|
|