diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-28 19:21:20 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-28 19:21:20 +0000 |
commit | f20cc69fdf1638f0f2c48704f4f42bb5b938e436 (patch) | |
tree | b78df389dcbaf18e9969117f785f2b7ce72327fd /content/ppapi_plugin | |
parent | 11924815ef76d03622580daa4a1ec7f61d39db58 (diff) | |
download | chromium_src-f20cc69fdf1638f0f2c48704f4f42bb5b938e436.zip chromium_src-f20cc69fdf1638f0f2c48704f4f42bb5b938e436.tar.gz chromium_src-f20cc69fdf1638f0f2c48704f4f42bb5b938e436.tar.bz2 |
Convert the Pepper Talk API to use the new resource system.
This uses the new resource call/reply system and removes the special casing
for the messages in the PPAPI plugin and the special filter attached to all
child process hosts. This also adds permissions checking (it requires private
permissions to use this API).
BUG=
Review URL: https://codereview.chromium.org/11359147
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170017 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r-- | content/ppapi_plugin/ppapi_thread.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc index b3259c7..7678780 100644 --- a/content/ppapi_plugin/ppapi_thread.cc +++ b/content/ppapi_plugin/ppapi_thread.cc @@ -115,8 +115,6 @@ bool PpapiThread::OnMessageReceived(const IPC::Message& msg) { OnPluginDispatcherMessageReceived(msg)) IPC_MESSAGE_HANDLER_GENERIC(PpapiMsg_PPBUDPSocket_BindACK, OnPluginDispatcherMessageReceived(msg)) - IPC_MESSAGE_HANDLER_GENERIC(PpapiMsg_PPBTalk_GetPermissionACK, - OnPluginDispatcherMessageReceived(msg)) IPC_MESSAGE_HANDLER_GENERIC(PpapiMsg_PPBHostResolver_ResolveACK, OnPluginDispatcherMessageReceived(msg)) IPC_MESSAGE_HANDLER_GENERIC(PpapiMsg_PPBNetworkMonitor_NetworkList, |