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

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

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 years, 7 months 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "build/build_config.h" 5 #include "build/build_config.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "base/message_loop/message_loop.h"
9 #include "base/run_loop.h" 10 #include "base/run_loop.h"
10 #include "base/threading/thread.h" 11 #include "base/threading/thread.h"
11 #include "ipc/ipc_logging.h" 12 #include "ipc/ipc_logging.h"
12 #include "ppapi/nacl_irt/irt_interfaces.h" 13 #include "ppapi/nacl_irt/irt_interfaces.h"
13 #include "ppapi/nacl_irt/irt_ppapi.h" 14 #include "ppapi/nacl_irt/irt_ppapi.h"
14 #include "ppapi/nacl_irt/plugin_startup.h" 15 #include "ppapi/nacl_irt/plugin_startup.h"
15 #include "ppapi/nacl_irt/ppapi_dispatcher.h" 16 #include "ppapi/nacl_irt/ppapi_dispatcher.h"
16 #include "ppapi/nacl_irt/public/irt_ppapi.h" 17 #include "ppapi/nacl_irt/public/irt_ppapi.h"
17 #include "ppapi/proxy/plugin_globals.h" 18 #include "ppapi/proxy/plugin_globals.h"
18 #include "ppapi/shared_impl/ppb_audio_shared.h" 19 #include "ppapi/shared_impl/ppb_audio_shared.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 } 55 }
55 56
56 const void* PPP_GetInterface(const char* interface_name) { 57 const void* PPP_GetInterface(const char* interface_name) {
57 return g_pp_functions.PPP_GetInterface(interface_name); 58 return g_pp_functions.PPP_GetInterface(interface_name);
58 } 59 }
59 60
60 const struct nacl_irt_ppapihook nacl_irt_ppapihook = { 61 const struct nacl_irt_ppapihook nacl_irt_ppapihook = {
61 irt_ppapi_start, 62 irt_ppapi_start,
62 PpapiPluginRegisterThreadCreator, 63 PpapiPluginRegisterThreadCreator,
63 }; 64 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698