| Index: components/nacl/browser/nacl_file_host.h
|
| diff --git a/components/nacl/browser/nacl_file_host.h b/components/nacl/browser/nacl_file_host.h
|
| index 04ac621525900ea1637dd86bd6871be8c05dd9de..442475fe14f9591ae2c64b4ce4dac936a685c5ce 100644
|
| --- a/components/nacl/browser/nacl_file_host.h
|
| +++ b/components/nacl/browser/nacl_file_host.h
|
| @@ -6,6 +6,7 @@
|
| #define COMPONENTS_NACL_BROWSER_NACL_FILE_HOST_H_
|
|
|
| #include <string>
|
| +#include <vector>
|
|
|
| #include "base/memory/ref_counted.h"
|
|
|
| @@ -41,11 +42,11 @@ void GetReadonlyPnaclFd(
|
| bool PnaclCanOpenFile(const std::string& filename,
|
| base::FilePath* file_to_open);
|
|
|
| -// Opens a NaCl executable file for reading and executing.
|
| -void OpenNaClExecutable(
|
| +// Opens NaCl resource files for reading and/or executing.
|
| +void OpenNaClResources(
|
| scoped_refptr<nacl::NaClHostMessageFilter> nacl_host_message_filter,
|
| int render_view_id,
|
| - const GURL& file_url,
|
| + const std::vector<GURL>& resource_urls,
|
| bool enable_validation_caching,
|
| IPC::Message* reply_msg);
|
|
|
|
|