diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-17 22:45:57 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-17 22:45:57 +0000 |
commit | 6cccb1224cb1910c38f6ed2f02c99898eea2b911 (patch) | |
tree | d02bca3245156443ca9f86084bc835adc72f582f /content/ppapi_plugin | |
parent | 558d00086dd730c182714f6cfbe27973e06259b4 (diff) | |
download | chromium_src-6cccb1224cb1910c38f6ed2f02c99898eea2b911.zip chromium_src-6cccb1224cb1910c38f6ed2f02c99898eea2b911.tar.gz chromium_src-6cccb1224cb1910c38f6ed2f02c99898eea2b911.tar.bz2 |
Change the PPAPI message loop to type IO (from type UI).
UI message pumps are special on Mac and won't work.
BUG=none
TEST=out-of-process Flapper continues to work on Linux and dies later on Mac
Review URL: http://codereview.chromium.org/7036024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85690 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r-- | content/ppapi_plugin/ppapi_plugin_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/ppapi_plugin/ppapi_plugin_main.cc b/content/ppapi_plugin/ppapi_plugin_main.cc index 6e1abf3..e23b1e4 100644 --- a/content/ppapi_plugin/ppapi_plugin_main.cc +++ b/content/ppapi_plugin/ppapi_plugin_main.cc @@ -41,7 +41,7 @@ int PpapiPluginMain(const MainFunctionParams& parameters) { ChildProcess::WaitForDebugger("Ppapi"); } - MessageLoop main_message_loop(MessageLoop::TYPE_UI); + MessageLoop main_message_loop(MessageLoop::TYPE_IO); base::PlatformThread::SetName("CrPPAPIMain"); ChildProcess ppapi_process; |