| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_RESOURCES_H_ | 5 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_RESOURCES_H_ |
| 6 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_RESOURCES_H_ | 6 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_RESOURCES_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 nacl::string llc_tool_name_; | 52 nacl::string llc_tool_name_; |
| 53 nacl::string ld_tool_name_; | 53 nacl::string ld_tool_name_; |
| 54 | 54 |
| 55 // File info for llc and ld executables, after they've been opened. | 55 // File info for llc and ld executables, after they've been opened. |
| 56 // Only valid after the callback for StartLoad() has been called, and until | 56 // Only valid after the callback for StartLoad() has been called, and until |
| 57 // TakeLlcFileInfo()/TakeLdFileInfo() is called. | 57 // TakeLlcFileInfo()/TakeLdFileInfo() is called. |
| 58 PP_NaClFileInfo llc_file_info_; | 58 PP_NaClFileInfo llc_file_info_; |
| 59 PP_NaClFileInfo ld_file_info_; | 59 PP_NaClFileInfo ld_file_info_; |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace plugin; | 62 } // namespace plugin |
| 63 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_RESOURCES_H_ | 63 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PNACL_RESOURCES_H_ |
| OLD | NEW |