| 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_ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "native_client/src/include/nacl_string.h" | 21 #include "native_client/src/include/nacl_string.h" |
| 22 #include "native_client/src/public/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" | |
| 32 #include "ppapi/native_client/src/trusted/plugin/nacl_subprocess.h" | 31 #include "ppapi/native_client/src/trusted/plugin/nacl_subprocess.h" |
| 33 #include "ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h" | 32 #include "ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h" |
| 34 #include "ppapi/native_client/src/trusted/plugin/service_runtime.h" | 33 #include "ppapi/native_client/src/trusted/plugin/service_runtime.h" |
| 35 #include "ppapi/native_client/src/trusted/plugin/utility.h" | 34 #include "ppapi/native_client/src/trusted/plugin/utility.h" |
| 36 | 35 |
| 36 #include "ppapi/utility/completion_callback_factory.h" |
| 37 |
| 37 namespace nacl { | 38 namespace nacl { |
| 38 class DescWrapper; | 39 class DescWrapper; |
| 39 class DescWrapperFactory; | 40 class DescWrapperFactory; |
| 40 } // namespace nacl | 41 } // namespace nacl |
| 41 | 42 |
| 42 namespace pp { | 43 namespace pp { |
| 43 class CompletionCallback; | 44 class CompletionCallback; |
| 44 class URLLoader; | 45 class URLLoader; |
| 45 class URLUtil_Dev; | 46 class URLUtil_Dev; |
| 46 } | 47 } |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 226 |
| 226 PP_NaClFileInfo nexe_file_info_; | 227 PP_NaClFileInfo nexe_file_info_; |
| 227 | 228 |
| 228 const PPB_NaCl_Private* nacl_interface_; | 229 const PPB_NaCl_Private* nacl_interface_; |
| 229 pp::UMAPrivate uma_interface_; | 230 pp::UMAPrivate uma_interface_; |
| 230 }; | 231 }; |
| 231 | 232 |
| 232 } // namespace plugin | 233 } // namespace plugin |
| 233 | 234 |
| 234 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ | 235 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ |
| OLD | NEW |