summaryrefslogtreecommitdiffstats
path: root/content/ppapi_plugin
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-20 20:19:39 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-20 20:19:39 +0000
commit5b9b80e284fb0b6a4885209ade02093aecc7eb86 (patch)
treebadaaf0bccfb0ea5413c8949250ba50fec420aba /content/ppapi_plugin
parent1769870244a943241f8d34dc01b2d98b4f2b38f4 (diff)
downloadchromium_src-5b9b80e284fb0b6a4885209ade02093aecc7eb86.zip
chromium_src-5b9b80e284fb0b6a4885209ade02093aecc7eb86.tar.gz
chromium_src-5b9b80e284fb0b6a4885209ade02093aecc7eb86.tar.bz2
Out-of-process implementation of the PPB_NetworkMonitor_Private interface.
BUG=114808 Review URL: http://codereview.chromium.org/9677060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127762 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r--content/ppapi_plugin/ppapi_thread.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc
index 8d2d23e..54f9af8 100644
--- a/content/ppapi_plugin/ppapi_thread.cc
+++ b/content/ppapi_plugin/ppapi_thread.cc
@@ -105,6 +105,8 @@ bool PpapiThread::OnMessageReceived(const IPC::Message& msg) {
OnPluginDispatcherMessageReceived(msg))
IPC_MESSAGE_HANDLER_GENERIC(PpapiMsg_PPBHostResolver_ResolveACK,
OnPluginDispatcherMessageReceived(msg))
+ IPC_MESSAGE_HANDLER_GENERIC(PpapiMsg_PPBNetworkMonitor_NetworkList,
+ OnPluginDispatcherMessageReceived(msg))
IPC_MESSAGE_HANDLER(PpapiMsg_SetNetworkState, OnMsgSetNetworkState)
IPC_END_MESSAGE_MAP()
return true;