| OLD | NEW |
| 1 /* -*- c++ -*- */ | 1 /* -*- c++ -*- */ |
| 2 /* | 2 /* |
| 3 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 // A class containing information regarding a socket connection to a | 8 // A class containing information regarding a socket connection to a |
| 9 // service runtime instance. | 9 // service runtime instance. |
| 10 | 10 |
| 11 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ | 11 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ |
| 12 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ | 12 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ |
| 13 | 13 |
| 14 #include "native_client/src/include/nacl_macros.h" | 14 #include "native_client/src/include/nacl_macros.h" |
| 15 #include "native_client/src/include/nacl_scoped_ptr.h" | 15 #include "native_client/src/include/nacl_scoped_ptr.h" |
| 16 #include "native_client/src/include/nacl_string.h" | 16 #include "native_client/src/include/nacl_string.h" |
| 17 #include "native_client/src/shared/platform/nacl_sync.h" | 17 #include "native_client/src/shared/platform/nacl_sync.h" |
| 18 #include "native_client/src/shared/srpc/nacl_srpc.h" | 18 #include "native_client/src/shared/srpc/nacl_srpc.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/nonnacl_util/sel_ldr_launcher.h" |
| 20 #include "native_client/src/trusted/plugin/utility.h" | 21 #include "native_client/src/trusted/plugin/utility.h" |
| 21 #include "native_client/src/trusted/reverse_service/reverse_service.h" | 22 #include "native_client/src/trusted/reverse_service/reverse_service.h" |
| 22 #include "native_client/src/trusted/weak_ref/weak_ref.h" | 23 #include "native_client/src/trusted/weak_ref/weak_ref.h" |
| 23 | 24 |
| 24 #include "ppapi/c/trusted/ppb_file_io_trusted.h" | 25 #include "ppapi/c/trusted/ppb_file_io_trusted.h" |
| 25 #include "ppapi/cpp/completion_callback.h" | 26 #include "ppapi/cpp/completion_callback.h" |
| 26 | 27 |
| 27 namespace nacl { | 28 namespace nacl { |
| 28 class DescWrapper; | 29 class DescWrapper; |
| 29 struct SelLdrLauncher; | |
| 30 } // namespace | 30 } // namespace |
| 31 | 31 |
| 32 namespace pp { | 32 namespace pp { |
| 33 class FileIO; | 33 class FileIO; |
| 34 } // namespace | 34 } // namespace |
| 35 | 35 |
| 36 namespace plugin { | 36 namespace plugin { |
| 37 | 37 |
| 38 class ErrorInfo; | 38 class ErrorInfo; |
| 39 class Manifest; | 39 class Manifest; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 | 253 |
| 254 PluginReverseInterface* rev_interface_; | 254 PluginReverseInterface* rev_interface_; |
| 255 | 255 |
| 256 NaClMutex mu_; | 256 NaClMutex mu_; |
| 257 int exit_status_; | 257 int exit_status_; |
| 258 }; | 258 }; |
| 259 | 259 |
| 260 } // namespace plugin | 260 } // namespace plugin |
| 261 | 261 |
| 262 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ | 262 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ |
| OLD | NEW |