Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Unified Diff: components/nacl/browser/nacl_host_message_filter.cc

Issue 840103003: Remove nonsfi token workaround. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 e4737660ad3634a5b75480d48b640eea55089e7f..70521e46207e45d2925d4659aec2cf6219ae4468 100644
--- a/components/nacl/browser/nacl_host_message_filter.cc
+++ b/components/nacl/browser/nacl_host_message_filter.cc
@@ -286,8 +286,12 @@ void NaClHostMessageFilter::OnMissingArchError(int render_view_id) {
void NaClHostMessageFilter::OnOpenNaClExecutable(int render_view_id,
const GURL& file_url,
+ bool register_executable,
IPC::Message* reply_msg) {
- nacl_file_host::OpenNaClExecutable(this, render_view_id, file_url,
+ nacl_file_host::OpenNaClExecutable(this,
+ render_view_id,
+ file_url,
+ register_executable,
reply_msg);
}

Powered by Google App Engine
This is Rietveld 408576698