| Index: content/common/frame_messages.h
|
| diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
|
| index 5e02c043920e1f0836497795e096a0c1b65a8afc..468dffccc0d55ee8e9737e0608ed0d786339a045 100644
|
| --- a/content/common/frame_messages.h
|
| +++ b/content/common/frame_messages.h
|
| @@ -671,6 +671,13 @@ IPC_MESSAGE_ROUTED4(FrameMsg_FailedNavigation,
|
| // Note: this covers only the immediate frame / doesn't cover subframes.
|
| IPC_MESSAGE_ROUTED0(FrameMsg_GetSavableResourceLinks)
|
|
|
| +// Get html data by serializing the target frame and replacing all resource
|
| +// links with a path to the local copy passed in the message payload.
|
| +IPC_MESSAGE_ROUTED3(FrameMsg_GetSerializedHtmlWithLocalLinks,
|
| + std::vector<GURL> /* urls that have local copy */,
|
| + std::vector<base::FilePath> /* paths of local copy */,
|
| + base::FilePath /* local directory path */)
|
| +
|
| #if defined(ENABLE_PLUGINS)
|
| // Notifies the renderer of updates to the Plugin Power Saver origin whitelist.
|
| IPC_MESSAGE_ROUTED1(FrameMsg_UpdatePluginContentOriginWhitelist,
|
| @@ -1167,6 +1174,12 @@ IPC_MESSAGE_ROUTED3(FrameHostMsg_SavableResourceLinksResponse,
|
| // errors gathering the links.
|
| IPC_MESSAGE_ROUTED0(FrameHostMsg_SavableResourceLinksError)
|
|
|
| +// Response to FrameMsg_GetSerializedHtmlWithLocalLinks.
|
| +IPC_MESSAGE_ROUTED3(FrameHostMsg_SerializedHtmlWithLocalLinksResponse,
|
| + GURL /* frame URL */,
|
| + std::string /* data buffer */,
|
| + int32 /* complete status */)
|
| +
|
| // Sent when the renderer updates hint for importance of a tab.
|
| IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdatePageImportanceSignals,
|
| content::PageImportanceSignals)
|
|
|