Index: components/nacl/browser/nacl_process_host.h |
diff --git a/components/nacl/browser/nacl_process_host.h b/components/nacl/browser/nacl_process_host.h |
index e35367564195b2c0e4dbfebaac5e092af8f24faf..b4067e846519f037bef09f18874a7aed4198cd63 100644 |
--- a/components/nacl/browser/nacl_process_host.h |
+++ b/components/nacl/browser/nacl_process_host.h |
@@ -7,6 +7,10 @@ |
#include "build/build_config.h" |
+#include <string> |
+#include <utility> |
+#include <vector> |
+ |
#include "base/files/file.h" |
#include "base/files/file_path.h" |
#include "base/files/file_util_proxy.h" |
@@ -57,16 +61,18 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate { |
// off_the_record: was the process launched from an incognito renderer? |
// process_type: the type of NaCl process. |
// profile_directory: is the path of current profile directory. |
- NaClProcessHost(const GURL& manifest_url, |
- base::File nexe_file, |
- const NaClFileToken& nexe_token, |
- ppapi::PpapiPermissions permissions, |
- int render_view_id, |
- uint32 permission_bits, |
- bool uses_nonsfi_mode, |
- bool off_the_record, |
- NaClAppProcessType process_type, |
- const base::FilePath& profile_directory); |
+ NaClProcessHost( |
+ const GURL& manifest_url, |
+ base::File nexe_file, |
+ const NaClFileToken& nexe_token, |
+ const std::vector<NaClResourceFileInfo>& resource_files_info, |
+ ppapi::PpapiPermissions permissions, |
+ int render_view_id, |
+ uint32 permission_bits, |
+ bool uses_nonsfi_mode, |
+ bool off_the_record, |
+ NaClAppProcessType process_type, |
+ const base::FilePath& profile_directory); |
~NaClProcessHost() override; |
void OnProcessCrashed(int exit_status) override; |
@@ -182,6 +188,7 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate { |
GURL manifest_url_; |
base::File nexe_file_; |
NaClFileToken nexe_token_; |
+ std::vector<NaClResourceFileInfo> resource_files_info_; |
ppapi::PpapiPermissions permissions_; |