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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 // in UpdateDownloadProgress to map a url loader back to the URL being | 290 // in UpdateDownloadProgress to map a url loader back to the URL being |
291 // downloaded. | 291 // downloaded. |
292 const FileDownloader* FindFileDownloader(PP_Resource url_loader) const; | 292 const FileDownloader* FindFileDownloader(PP_Resource url_loader) const; |
293 | 293 |
294 int64_t time_of_last_progress_event_; | 294 int64_t time_of_last_progress_event_; |
295 int exit_status_; | 295 int exit_status_; |
296 | 296 |
297 int32_t manifest_id_; | 297 int32_t manifest_id_; |
298 | 298 |
299 PP_FileHandle nexe_handle_; | 299 PP_FileHandle nexe_handle_; |
| 300 uint64_t nexe_token_lo_; |
| 301 uint64_t nexe_token_hi_; |
300 | 302 |
301 const PPB_NaCl_Private* nacl_interface_; | 303 const PPB_NaCl_Private* nacl_interface_; |
302 pp::UMAPrivate uma_interface_; | 304 pp::UMAPrivate uma_interface_; |
303 }; | 305 }; |
304 | 306 |
305 } // namespace plugin | 307 } // namespace plugin |
306 | 308 |
307 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ | 309 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ |
OLD | NEW |