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 3c7f62552518d981da056f401a6cdaf900588fd1..22aee7b6f6dc9fbb52310dac7b9dec5fa52a93ee 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,10 +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, |
- bool enable_validation_caching, |
- IPC::Message* reply_msg); |
+ void OnOpenNaClResources(int render_view_id, |
+ const std::vector<GURL>& resource_urls, |
+ bool enable_validation_caching, |
+ IPC::Message* reply_msg); |
void SyncReturnTemporaryFile(IPC::Message* reply_msg, |
base::File file); |
void AsyncReturnTemporaryFile(int pp_instance, |