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

Unified Diff: chrome/browser/nacl_host/nacl_file_host.h

Issue 15906013: Separate NaCl messages from the rest of chrome messages and create a new message filter. This is pa… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 years, 6 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
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/nacl_host/nacl_file_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/nacl_host/nacl_file_host.h
diff --git a/chrome/browser/nacl_host/nacl_file_host.h b/chrome/browser/nacl_host/nacl_file_host.h
index 2dba7934417bbc68b15f27cec41d70754be35e38..3491688baa8afafac9f578088119f87308800d07 100644
--- a/chrome/browser/nacl_host/nacl_file_host.h
+++ b/chrome/browser/nacl_host/nacl_file_host.h
@@ -9,9 +9,9 @@
#include "base/memory/ref_counted.h"
-class ChromeRenderMessageFilter;
class ExtensionInfoMap;
class GURL;
+class NaClHostMessageFilter;
namespace base {
class FilePath;
@@ -27,7 +27,7 @@ namespace nacl_file_host {
// Open a Pnacl file (readonly) on behalf of the NaCl plugin.
void GetReadonlyPnaclFd(
- scoped_refptr<ChromeRenderMessageFilter> chrome_render_message_filter,
+ scoped_refptr<NaClHostMessageFilter> nacl_host_message_filter,
const std::string& filename,
IPC::Message* reply_msg);
@@ -39,12 +39,12 @@ bool PnaclCanOpenFile(const std::string& filename,
// Creates a temporary file that will be deleted when the last handle
// is closed, or earlier.
void CreateTemporaryFile(
- scoped_refptr<ChromeRenderMessageFilter> chrome_render_message_filter,
+ scoped_refptr<NaClHostMessageFilter> nacl_host_message_filter,
IPC::Message* reply_msg);
// Opens a NaCl executable file for reading and executing.
void OpenNaClExecutable(
- scoped_refptr<ChromeRenderMessageFilter> chrome_render_message_filter,
+ scoped_refptr<NaClHostMessageFilter> nacl_host_message_filter,
scoped_refptr<ExtensionInfoMap> extension_info_map,
int render_view_id,
const GURL& file_url,
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/nacl_host/nacl_file_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698