| Index: content/common/frame_messages.h
|
| diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
|
| index 6460831b32d393c1039a85e3f7409cda2025035b..b602600e85ccf9f60583e844aba5d848f7535668 100644
|
| --- a/content/common/frame_messages.h
|
| +++ b/content/common/frame_messages.h
|
| @@ -490,6 +490,12 @@ IPC_MESSAGE_ROUTED4(FrameMsg_CommitNavigation,
|
| content::CommonNavigationParams, /* common_params */
|
| content::CommitNavigationParams /* commit_params */)
|
|
|
| +#if defined(ENABLE_PLUGINS)
|
| +// Notifies the renderer of updates to the Plugin Power Saver origin whitelist.
|
| +IPC_MESSAGE_ROUTED1(FrameMsg_UpdatePluginContentOriginWhitelist,
|
| + std::set<GURL> /* origin_whitelist */)
|
| +#endif // defined(ENABLE_PLUGINS)
|
| +
|
| // -----------------------------------------------------------------------------
|
| // Messages sent from the renderer to the browser.
|
|
|
| @@ -631,6 +637,13 @@ IPC_SYNC_MESSAGE_CONTROL4_3(FrameHostMsg_GetPluginInfo,
|
| bool /* found */,
|
| content::WebPluginInfo /* plugin info */,
|
| std::string /* actual_mime_type */)
|
| +
|
| +// A renderer sends this to the browser process when it wants to temporarily
|
| +// whitelist an origin's plugin content as essential. This temporary whitelist
|
| +// is specific to a top level frame, and is cleared when the whitelisting
|
| +// RenderFrame is destroyed.
|
| +IPC_MESSAGE_ROUTED1(FrameHostMsg_PluginContentOriginAllowed,
|
| + GURL /* content_origin */)
|
| #endif // defined(ENABLE_PLUGINS)
|
|
|
| // A renderer sends this to the browser process when it wants to
|
|
|