// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_COMMON_PAGE_MESSAGES_H_ #define CONTENT_COMMON_PAGE_MESSAGES_H_ #include "content/common/page_message_enums.h" #include "content/public/common/screen_info.h" #include "ipc/ipc_message_macros.h" #include "ui/gfx/geometry/rect.h" // IPC messages for page-level actions. // TODO(https://crbug.com/775827): Convert to mojo. #undef IPC_MESSAGE_EXPORT #define IPC_MESSAGE_EXPORT CONTENT_EXPORT #define IPC_MESSAGE_START PageMsgStart IPC_ENUM_TRAITS_MAX_VALUE( PageMsg_SetZoomLevel_Command, PageMsg_SetZoomLevel_Command::LAST) // Messages sent from the browser to the renderer. IPC_MESSAGE_ROUTED1(PageMsg_UpdateWindowScreenRect, gfx::Rect /* window_screen_rect */) 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) // Informs the renderer that the page is no longer hidden. IPC_MESSAGE_ROUTED0(PageMsg_WasShown) // Sent when the history for this page is altered from another process. The // history list should be reset to |history_length| length, and the offset // should be reset to |history_offset|. IPC_MESSAGE_ROUTED2(PageMsg_SetHistoryOffsetAndLength, int /* history_offset */, int /* history_length */) IPC_MESSAGE_ROUTED1(PageMsg_AudioStateChanged, bool /* is_audio_playing */) // Pause and unpause active tasks regarding deferLoading, active javascripts, // timer, scheduled task through |blink::WebFrameScheduler|. IPC_MESSAGE_ROUTED1(PageMsg_PausePageScheduledTasks, bool /* paused */) // Sent to OOPIF renderers when the main frame's ScreenInfo changes. IPC_MESSAGE_ROUTED1(PageMsg_UpdateScreenInfo, content::ScreenInfo /* screen_info */) // Sent to all renderers, instructing them to freeze all frames that belongs to // this page. IPC_MESSAGE_ROUTED0(PageMsg_FreezePage) // ----------------------------------------------------------------------------- // Messages sent from the renderer to the browser. // Adding a new message? Stick to the sort order above: first platform // independent PageMsg, then ifdefs for platform specific PageMsg, then platform // independent PageHostMsg, then ifdefs for platform specific PageHostMsg. #endif // CONTENT_COMMON_PAGE_MESSAGES_H_