| Index: content/common/view_messages.h
|
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h
|
| index c24b17699fd59e60e778022566b1c0ff7104ccfc..be6b417acc307cd112a2ec8be0c7fa01cb1a5c50 100644
|
| --- a/content/common/view_messages.h
|
| +++ b/content/common/view_messages.h
|
| @@ -690,6 +690,9 @@ IPC_MESSAGE_ROUTED2(ViewMsg_PluginActionAt,
|
| IPC_MESSAGE_ROUTED1(ViewMsg_PostMessageEvent,
|
| ViewMsg_PostMessage_Params)
|
|
|
| +// Resets the page scale for the current main frame to the default page scale.
|
| +IPC_MESSAGE_ROUTED0(ViewMsg_ResetPageScale)
|
| +
|
| // Change the zoom level for the current main frame. If the level actually
|
| // changes, a ViewHostMsg_DidZoomURL message will be sent back to the browser
|
| // telling it what url got zoomed and what its current zoom level is.
|
| @@ -1431,6 +1434,10 @@ IPC_MESSAGE_ROUTED2(ViewHostMsg_DidZoomURL,
|
| double /* zoom_level */,
|
| GURL /* url */)
|
|
|
| +// Sent when the renderer changes its page scale factor and whether or not the
|
| +// page scale factor is one changes.
|
| +IPC_MESSAGE_ROUTED1(ViewHostMsg_PageScaleFactorIsOneChanged, bool /* is_one */);
|
| +
|
| // Updates the minimum/maximum allowed zoom percent for this tab from the
|
| // default values. If |remember| is true, then the zoom setting is applied to
|
| // other pages in the site and is saved, otherwise it only applies to this
|
|
|