summaryrefslogtreecommitdiff
path: root/chromium/content/common/page_messages.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/common/page_messages.h')
-rw-r--r--chromium/content/common/page_messages.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/chromium/content/common/page_messages.h b/chromium/content/common/page_messages.h
index 423a9f1282e..4e8cf807539 100644
--- a/chromium/content/common/page_messages.h
+++ b/chromium/content/common/page_messages.h
@@ -46,10 +46,18 @@ IPC_MESSAGE_ROUTED2(PageMsg_SetHistoryOffsetAndLength,
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.