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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 // downloaded. | 308 // downloaded. |
309 const FileDownloader* FindFileDownloader(PP_Resource url_loader) const; | 309 const FileDownloader* FindFileDownloader(PP_Resource url_loader) const; |
310 | 310 |
311 int64_t time_of_last_progress_event_; | 311 int64_t time_of_last_progress_event_; |
312 int exit_status_; | 312 int exit_status_; |
313 | 313 |
314 PP_Var manifest_data_var_; | 314 PP_Var manifest_data_var_; |
315 int32_t manifest_id_; | 315 int32_t manifest_id_; |
316 | 316 |
317 PP_FileHandle nexe_handle_; | 317 PP_FileHandle nexe_handle_; |
| 318 NaClFileInfo nexe_file_info_; |
318 | 319 |
319 const PPB_NaCl_Private* nacl_interface_; | 320 const PPB_NaCl_Private* nacl_interface_; |
320 pp::UMAPrivate uma_interface_; | 321 pp::UMAPrivate uma_interface_; |
321 }; | 322 }; |
322 | 323 |
323 } // namespace plugin | 324 } // namespace plugin |
324 | 325 |
325 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ | 326 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ |
OLD | NEW |