Chromium Code Reviews| Index: content/common/frame_messages.h |
| diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h |
| index d8e5931037314370feaff3f5ee0e54216d962fb8..165b61a29e6fb430ca98baabb3a8a09cba21936b 100644 |
| --- a/content/common/frame_messages.h |
| +++ b/content/common/frame_messages.h |
| @@ -790,6 +790,15 @@ IPC_MESSAGE_ROUTED1(FrameMsg_SetTextTrackSettings, |
| // Posts a message from a frame in another process to the current renderer. |
| IPC_MESSAGE_ROUTED1(FrameMsg_PostMessageEvent, FrameMsg_PostMessage_Params) |
| +// Instructs the frame to set its zoom level to match the owning WebContents. |
|
alexmos
2016/04/05 18:00:54
The comments for these two messages are the same -
wjmaclean
2016/04/05 20:22:00
Done.
alexmos
2016/04/07 01:20:56
They're still the same in the latest PS :)
wjmaclean
2016/04/07 12:55:36
Ooops. No matter, as these messages go away in the
|
| +IPC_MESSAGE_ROUTED2(FrameMsg_SetTemporaryZoomLevel, |
| + double /* zoom_level*/, |
| + bool /* is_temporary */) |
| + |
| +// Instructs the frame to set its zoom level to match the owning WebContents. |
| +IPC_MESSAGE_ROUTED1(FrameMsg_SetZoomLevelFromWebContents, |
| + double /* zoom_level*/) |
| + |
| #if defined(OS_ANDROID) |
| // Sent when the browser wants the bounding boxes of the current find matches. |
| // |