| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 The Native Client 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 | 6 |
| 7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SEL_UNIVERSAL_REVERSE_EMULATE_H_ | 7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SEL_UNIVERSAL_REVERSE_EMULATE_H_ |
| 8 #define NATIVE_CLIENT_SRC_TRUSTED_SEL_UNIVERSAL_REVERSE_EMULATE_H_ | 8 #define NATIVE_CLIENT_SRC_TRUSTED_SEL_UNIVERSAL_REVERSE_EMULATE_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 // Add a manifest file mapping from key to a descriptor from a pathname. | 37 // Add a manifest file mapping from key to a descriptor from a pathname. |
| 38 bool HandlerReverseEmuAddManifestMapping(NaClCommandLoop* ncl, | 38 bool HandlerReverseEmuAddManifestMapping(NaClCommandLoop* ncl, |
| 39 const std::vector<std::string>& args); | 39 const std::vector<std::string>& args); |
| 40 | 40 |
| 41 // Dump the manifest key --> pathname pairs. | 41 // Dump the manifest key --> pathname pairs. |
| 42 bool HandlerReverseEmuDumpManifestMappings( | 42 bool HandlerReverseEmuDumpManifestMappings( |
| 43 NaClCommandLoop* ncl, | 43 NaClCommandLoop* ncl, |
| 44 const std::vector<std::string>& args); | 44 const std::vector<std::string>& args); |
| 45 | 45 |
| 46 bool HandlerWaitForExit(NaClCommandLoop* ncl, |
| 47 const std::vector<std::string>& args); |
| 48 |
| 46 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SEL_UNIVERSAL_REVERSE_EMULATE_H_ */ | 49 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SEL_UNIVERSAL_REVERSE_EMULATE_H_ */ |
| OLD | NEW |