Index: chrome/nacl/nacl_listener.h |
diff --git a/chrome/nacl/nacl_listener.h b/chrome/nacl/nacl_listener.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e746bd5f8074b38f577ae9157a682f50ba17979f |
--- /dev/null |
+++ b/chrome/nacl/nacl_listener.h |
@@ -0,0 +1,24 @@ |
+// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+#ifndef CHROME_NACL_NACL_LISTENER_H_ |
+#define CHROME_NACL_NACL_LISTENER_H_ |
+#pragma once |
+ |
+#include "ipc/ipc_channel.h" |
+#include "chrome/common/nacl_types.h" |
+ |
+class NaClListener : public IPC::Channel::Listener { |
+ public: |
+ NaClListener() {} |
+ ~NaClListener() {} |
+ |
+ private: |
+ void OnStartSelLdr(std::vector<nacl::FileDescriptor> handles, |
+ bool have_irt_file); |
+ virtual bool OnMessageReceived(const IPC::Message& msg); |
+ |
+ DISALLOW_COPY_AND_ASSIGN(NaClListener); |
+}; |
+ |
+#endif // CHROME_NACL_NACL_LISTENER_H_ |