diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-07 01:42:04 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-07 01:42:04 +0000 |
commit | e4486d3200c9a53e4659debd67d4d267987b15dd (patch) | |
tree | bd3f48992a02ade8a15303b357ed91cd85e6837f /content/plugin/webplugin_proxy.h | |
parent | 311e4cc1f29a90bb5d9e36f7364d2e4fd1113fb7 (diff) | |
download | chromium_src-e4486d3200c9a53e4659debd67d4d267987b15dd.zip chromium_src-e4486d3200c9a53e4659debd67d4d267987b15dd.tar.gz chromium_src-e4486d3200c9a53e4659debd67d4d267987b15dd.tar.bz2 |
Make Flash work properly when started in low-integrity mode so that UIPI restrictions take effect. The change works by adding a new IPC from from plugin to browser, which tells the browser to reparent plugin windows when needed (since UIPI blacks parenting from the low-integrity plugin process).
See UIPI for reference: http://en.wikipedia.org/wiki/User_Interface_Privilege_Isolation
BUG=82870
Review URL: http://codereview.chromium.org/7054068
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88081 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/plugin/webplugin_proxy.h')
-rw-r--r-- | content/plugin/webplugin_proxy.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content/plugin/webplugin_proxy.h b/content/plugin/webplugin_proxy.h index 3cde1cb..a06d810 100644 --- a/content/plugin/webplugin_proxy.h +++ b/content/plugin/webplugin_proxy.h @@ -61,6 +61,7 @@ class WebPluginProxy : public webkit::npapi::WebPlugin { virtual void WillDestroyWindow(gfx::PluginWindowHandle window); #if defined(OS_WIN) void SetWindowlessPumpEvent(HANDLE pump_messages_event); + void ReparentPluginWindow(HWND window, HWND parent); #endif virtual void CancelResource(unsigned long id); |