Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1241)

Side by Side Diff: ppapi/native_client/src/trusted/plugin/plugin.h

Issue 263683002: Set file tokens for NaCl main nexe if available to enable validation caching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clear tokens too Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698