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

Side by Side Diff: ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_ 5 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_
6 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_ 6 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_
7 7
8 #include <set> 8 #include <set>
9 #include <map> 9 #include <map>
10 #include <vector> 10 #include <vector>
11 11
12 #include "native_client/src/include/nacl_macros.h" 12 #include "native_client/src/include/nacl_macros.h"
13 #include "native_client/src/include/nacl_string.h" 13 #include "native_client/src/include/nacl_string.h"
14 #include "native_client/src/shared/platform/nacl_sync_checked.h" 14 #include "native_client/src/shared/platform/nacl_sync_checked.h"
15 #include "native_client/src/shared/platform/nacl_sync_raii.h" 15 #include "native_client/src/shared/platform/nacl_sync_raii.h"
16 #include "native_client/src/shared/platform/nacl_threads.h" 16 #include "native_client/src/shared/platform/nacl_threads.h"
17 #include "native_client/src/shared/srpc/nacl_srpc.h" 17 #include "native_client/src/shared/srpc/nacl_srpc.h"
18 #include "native_client/src/trusted/desc/nacl_desc_rng.h" 18 #include "native_client/src/trusted/desc/nacl_desc_rng.h"
19 #include "native_client/src/trusted/desc/nacl_desc_wrapper.h" 19 #include "native_client/src/trusted/desc/nacl_desc_wrapper.h"
20 #include "native_client/src/trusted/plugin/delayed_callback.h" 20 #include "native_client/src/trusted/plugin/delayed_callback.h"
21 #include "native_client/src/trusted/plugin/nacl_subprocess.h" 21 #include "native_client/src/trusted/plugin/nacl_subprocess.h"
22 #include "native_client/src/trusted/plugin/plugin_error.h" 22 #include "native_client/src/trusted/plugin/plugin_error.h"
23 #include "native_client/src/trusted/plugin/pnacl_resources.h" 23 #include "native_client/src/trusted/plugin/pnacl_resources.h"
24 24
25 #include "ppapi/c/pp_file_info.h" 25 #include "ppapi/c/pp_file_info.h"
26 #include "ppapi/c/trusted/ppb_file_io_trusted.h"
26 #include "ppapi/cpp/completion_callback.h" 27 #include "ppapi/cpp/completion_callback.h"
27 #include "ppapi/cpp/file_io.h" 28 #include "ppapi/cpp/file_io.h"
28 #include "ppapi/cpp/file_ref.h" 29 #include "ppapi/cpp/file_ref.h"
29 #include "ppapi/cpp/file_system.h" 30 #include "ppapi/cpp/file_system.h"
30 31
31 struct NaClMutex; 32 struct NaClMutex;
32 struct PPB_FileIOTrusted;
33 33
34 namespace plugin { 34 namespace plugin {
35 35
36 class Manifest; 36 class Manifest;
37 class Plugin; 37 class Plugin;
38 class PnaclCoordinator; 38 class PnaclCoordinator;
39 39
40 // Translation creates two temporary files. The first temporary file holds 40 // Translation creates two temporary files. The first temporary file holds
41 // the object file created by llc. The second holds the nexe produced by 41 // the object file created by llc. The second holds the nexe produced by
42 // the linker. Both of these temporary files are used to both write and 42 // the linker. Both of these temporary files are used to both write and
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 pp::CompletionCallback translate_done_cb_; 274 pp::CompletionCallback translate_done_cb_;
275 275
276 // Used to report information when errors (PPAPI or otherwise) are reported. 276 // Used to report information when errors (PPAPI or otherwise) are reported.
277 ErrorInfo error_info_; 277 ErrorInfo error_info_;
278 }; 278 };
279 279
280 //---------------------------------------------------------------------- 280 //----------------------------------------------------------------------
281 281
282 } // namespace plugin; 282 } // namespace plugin;
283 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_ 283 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_COORDINATOR_H_
OLDNEW
« no previous file with comments | « ppapi/native_client/src/trusted/plugin/browser_interface.cc ('k') | ppapi/native_client/tests/earth/pepper_c.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698