| Index: components/nacl/browser/nacl_host_message_filter.h
|
| diff --git a/components/nacl/browser/nacl_host_message_filter.h b/components/nacl/browser/nacl_host_message_filter.h
|
| index 1de3ab39e4a81d1bef984865a6726ffbf1a10b93..abc984c15b5e7800abc8d74f0cad90af212360f7 100644
|
| --- a/components/nacl/browser/nacl_host_message_filter.h
|
| +++ b/components/nacl/browser/nacl_host_message_filter.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef COMPONENTS_NACL_BROWSER_NACL_HOST_MESSAGE_FILTER_H_
|
| #define COMPONENTS_NACL_BROWSER_NACL_HOST_MESSAGE_FILTER_H_
|
|
|
| +#include <vector>
|
| +
|
| #include "base/files/file.h"
|
| #include "base/files/file_path.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -64,9 +66,10 @@ class NaClHostMessageFilter : public content::BrowserMessageFilter {
|
| const PnaclCacheInfo& cache_info);
|
| void OnTranslationFinished(int instance, bool success);
|
| void OnMissingArchError(int render_view_id);
|
| - void OnOpenNaClExecutable(int render_view_id,
|
| - const GURL& file_url,
|
| - IPC::Message* reply_msg);
|
| + void OnOpenNaClResources(int render_view_id,
|
| + const GURL& file_url,
|
| + const std::vector<GURL>& resource_urls,
|
| + IPC::Message* reply_msg);
|
| void SyncReturnTemporaryFile(IPC::Message* reply_msg,
|
| base::File file);
|
| void AsyncReturnTemporaryFile(int pp_instance,
|
|
|