Index: components/nacl/browser/nacl_host_message_filter.cc |
diff --git a/components/nacl/browser/nacl_host_message_filter.cc b/components/nacl/browser/nacl_host_message_filter.cc |
index 9389b704d56331b5ccfa04ae7e11f68f39f287bc..852ecce68fbaaa18b28cf67a19acc6c5451a8579 100644 |
--- a/components/nacl/browser/nacl_host_message_filter.cc |
+++ b/components/nacl/browser/nacl_host_message_filter.cc |
@@ -95,10 +95,10 @@ void NaClHostMessageFilter::OnLaunchNaCl( |
} |
void NaClHostMessageFilter::OnGetReadonlyPnaclFd( |
- const std::string& filename, IPC::Message* reply_msg) { |
+ const std::string& filename, bool is_executable, IPC::Message* reply_msg) { |
// This posts a task to another thread, but the renderer will |
// block until the reply is sent. |
- nacl_file_host::GetReadonlyPnaclFd(this, filename, reply_msg); |
+ nacl_file_host::GetReadonlyPnaclFd(this, filename, is_executable, reply_msg); |
// This is the first message we receive from the renderer once it knows we |
// want to use PNaCl, so start the translation cache initialization here. |