Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Side by Side Diff: ppapi/nacl_irt/plugin_main.cc

Issue 1512233002: PPAPI/NaCl: Move plugin_main.cc's contents into irt_ppapi.cc (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/nacl_irt/plugin_main.h ('k') | ppapi/nacl_irt/plugin_startup.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ppapi/nacl_irt/plugin_main.h"
6
7 #include "build/build_config.h"
8 // Need to include this before most other files because it defines
9 // IPC_MESSAGE_LOG_ENABLED. We need to use it to define
10 // IPC_MESSAGE_MACROS_LOG_ENABLED so ppapi_messages.h will generate the
11 // ViewMsgLog et al. functions.
12
13 #include "base/threading/thread.h"
14 #include "ipc/ipc_logging.h"
15 #include "ppapi/nacl_irt/plugin_startup.h"
16 #include "ppapi/nacl_irt/ppapi_dispatcher.h"
17 #include "ppapi/proxy/plugin_globals.h"
18 #include "ppapi/shared_impl/ppb_audio_shared.h"
19
20 void PpapiPluginRegisterThreadCreator(
21 const struct PP_ThreadFunctions* thread_functions) {
22 // Initialize all classes that need to create threads that call back into
23 // user code.
24 ppapi::PPB_Audio_Shared::SetThreadFunctions(thread_functions);
25 }
26
27 int PpapiPluginMain() {
28 base::MessageLoop loop;
29 ppapi::proxy::PluginGlobals plugin_globals(
30 scoped_refptr<base::TaskRunner>(ppapi::GetIOThread()->task_runner()));
31
32 ppapi::PpapiDispatcher ppapi_dispatcher(
33 ppapi::GetIOThread()->task_runner(), ppapi::GetShutdownEvent(),
34 ppapi::GetBrowserIPCFileDescriptor(),
35 ppapi::GetRendererIPCFileDescriptor());
36 plugin_globals.SetPluginProxyDelegate(&ppapi_dispatcher);
37
38 loop.Run();
39
40 return 0;
41 }
OLDNEW
« no previous file with comments | « ppapi/nacl_irt/plugin_main.h ('k') | ppapi/nacl_irt/plugin_startup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698