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

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: concat filepath literal 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
« no previous file with comments | « ppapi/c/private/ppb_nacl_private.h ('k') | ppapi/native_client/src/trusted/plugin/plugin.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « ppapi/c/private/ppb_nacl_private.h ('k') | ppapi/native_client/src/trusted/plugin/plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698