| Index: content/ppapi_plugin/ppapi_broker_main.cc
|
| diff --git a/content/ppapi_plugin/ppapi_broker_main.cc b/content/ppapi_plugin/ppapi_broker_main.cc
|
| index 69333482a9d437b614bc5e6ceb43e1fef6ce1fff..f70574b559b7a64449ff3799640cca956da3a449 100644
|
| --- a/content/ppapi_plugin/ppapi_broker_main.cc
|
| +++ b/content/ppapi_plugin/ppapi_broker_main.cc
|
| @@ -3,7 +3,6 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/message_loop.h"
|
| -#include "base/threading/platform_thread.h"
|
| #include "build/build_config.h"
|
| #include "content/common/child_process.h"
|
| #include "content/common/content_switches.h"
|
| @@ -17,8 +16,7 @@ int PpapiBrokerMain(const MainFunctionParams& parameters) {
|
| ChildProcess::WaitForDebugger("PpapiBroker");
|
| }
|
|
|
| - MessageLoop main_message_loop(MessageLoop::TYPE_DEFAULT);
|
| - base::PlatformThread::SetName("CrPPAPIBrokerMain");
|
| + MessageLoop main_message_loop("CrPPAPIBrokerMain", MessageLoop::TYPE_DEFAULT);
|
|
|
| ChildProcess ppapi_broker_process;
|
| ppapi_broker_process.set_main_thread(new PpapiThread(true)); // Broker.
|
|
|