OLD | NEW |
1 // -*- c++ -*- | 1 // -*- c++ -*- |
2 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
5 | 5 |
6 // The portable representation of an instance and root scriptable object. | 6 // The portable representation of an instance and root scriptable object. |
7 // The PPAPI version of the plugin instantiates a subclass of this class. | 7 // The PPAPI version of the plugin instantiates a subclass of this class. |
8 | 8 |
9 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ | 9 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ |
10 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ | 10 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ |
11 | 11 |
12 #include <stdio.h> | 12 #include <stdio.h> |
13 | 13 |
14 #include <map> | 14 #include <map> |
15 #include <queue> | 15 #include <queue> |
16 #include <set> | 16 #include <set> |
17 #include <string> | 17 #include <string> |
18 | 18 |
19 #include "native_client/src/include/nacl_macros.h" | 19 #include "native_client/src/include/nacl_macros.h" |
20 #include "native_client/src/include/nacl_scoped_ptr.h" | 20 #include "native_client/src/include/nacl_scoped_ptr.h" |
21 #include "native_client/src/include/nacl_string.h" | 21 #include "native_client/src/include/nacl_string.h" |
22 #include "native_client/src/trusted/validator/nacl_file_info.h" | 22 #include "native_client/src/public/nacl_file_info.h" |
23 | 23 |
24 #include "ppapi/c/private/ppb_nacl_private.h" | 24 #include "ppapi/c/private/ppb_nacl_private.h" |
25 #include "ppapi/cpp/instance.h" | 25 #include "ppapi/cpp/instance.h" |
26 #include "ppapi/cpp/private/uma_private.h" | 26 #include "ppapi/cpp/private/uma_private.h" |
27 #include "ppapi/cpp/url_loader.h" | 27 #include "ppapi/cpp/url_loader.h" |
28 #include "ppapi/cpp/var.h" | 28 #include "ppapi/cpp/var.h" |
29 #include "ppapi/cpp/view.h" | 29 #include "ppapi/cpp/view.h" |
30 | 30 |
31 #include "ppapi/native_client/src/trusted/plugin/file_downloader.h" | 31 #include "ppapi/native_client/src/trusted/plugin/file_downloader.h" |
32 #include "ppapi/native_client/src/trusted/plugin/nacl_subprocess.h" | 32 #include "ppapi/native_client/src/trusted/plugin/nacl_subprocess.h" |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 | 316 |
317 PP_FileHandle nexe_handle_; | 317 PP_FileHandle nexe_handle_; |
318 | 318 |
319 const PPB_NaCl_Private* nacl_interface_; | 319 const PPB_NaCl_Private* nacl_interface_; |
320 pp::UMAPrivate uma_interface_; | 320 pp::UMAPrivate uma_interface_; |
321 }; | 321 }; |
322 | 322 |
323 } // namespace plugin | 323 } // namespace plugin |
324 | 324 |
325 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ | 325 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ |
OLD | NEW |