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

Side by Side Diff: ppapi/nacl_irt/irt_pnacl_translator_compile.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "base/macros.h" 5 #include "base/macros.h"
6 #include "base/message_loop/message_loop.h"
6 #include "base/run_loop.h" 7 #include "base/run_loop.h"
7 #include "build/build_config.h" 8 #include "build/build_config.h"
8 #include "ipc/ipc_listener.h" 9 #include "ipc/ipc_listener.h"
9 #include "ipc/ipc_sync_channel.h" 10 #include "ipc/ipc_sync_channel.h"
10 #include "native_client/src/untrusted/irt/irt_dev.h" 11 #include "native_client/src/untrusted/irt/irt_dev.h"
11 #include "ppapi/nacl_irt/irt_interfaces.h" 12 #include "ppapi/nacl_irt/irt_interfaces.h"
12 #include "ppapi/nacl_irt/plugin_startup.h" 13 #include "ppapi/nacl_irt/plugin_startup.h"
13 #include "ppapi/proxy/ppapi_messages.h" 14 #include "ppapi/proxy/ppapi_messages.h"
14 15
15 #if !defined(OS_NACL_NONSFI) 16 #if !defined(OS_NACL_NONSFI)
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 } 107 }
107 108
108 } 109 }
109 110
110 const struct nacl_irt_private_pnacl_translator_compile 111 const struct nacl_irt_private_pnacl_translator_compile
111 nacl_irt_private_pnacl_translator_compile = { 112 nacl_irt_private_pnacl_translator_compile = {
112 ServeTranslateRequest 113 ServeTranslateRequest
113 }; 114 };
114 115
115 #endif // !defined(OS_NACL_NONSFI) 116 #endif // !defined(OS_NACL_NONSFI)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698