Index: content/common/frame_messages.h |
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h |
index 27f9af77f4335908c0e1e95aeec9369ea35acc22..7546ea285a5aa0da23a80462836c9b44febea84d 100644 |
--- a/content/common/frame_messages.h |
+++ b/content/common/frame_messages.h |
@@ -1223,10 +1223,12 @@ IPC_MESSAGE_ROUTED1(FrameHostMsg_PepperStartsPlayback, |
IPC_MESSAGE_ROUTED1(FrameHostMsg_PepperStopsPlayback, |
int32_t /* pp_instance */) |
-// Used to get the list of plugins |
-IPC_SYNC_MESSAGE_CONTROL1_1(FrameHostMsg_GetPlugins, |
- bool /* refresh*/, |
- std::vector<content::WebPluginInfo> /* plugins */) |
+// Used to get the list of plugins. |main_frame_origin| is used to handle |
+// exceptions for Plugins Content Settings. |
alexmos
2016/08/04 05:32:03
nit: s/Plugins Content Settings/plugin content set
trizzofo
2016/08/05 02:04:25
Done.
|
+IPC_SYNC_MESSAGE_CONTROL2_1(FrameHostMsg_GetPlugins, |
+ bool /* refresh*/, |
+ url::Origin /* main_frame_origin */, |
+ std::vector<content::WebPluginInfo> /* plugins */) |
// Return information about a plugin for the given URL and MIME |
// type. If there is no matching plugin, |found| is false. |