| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_NACL_NACL_LISTENER_H_ | 5 #ifndef CHROME_NACL_NACL_LISTENER_H_ |
| 6 #define CHROME_NACL_NACL_LISTENER_H_ | 6 #define CHROME_NACL_NACL_LISTENER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "chrome/common/nacl_types.h" | 11 #include "chrome/common/nacl_types.h" |
| 12 #include "ipc/ipc_channel.h" | 12 #include "ipc/ipc_channel.h" |
| 13 | 13 |
| 14 // The NaClListener is an IPC channel listener that waits for a | 14 // The NaClListener is an IPC channel listener that waits for a |
| 15 // request to start a NaCl module. | 15 // request to start a NaCl module. |
| 16 class NaClListener : public IPC::Channel::Listener { | 16 class NaClListener : public IPC::Channel::Listener { |
| 17 public: | 17 public: |
| 18 NaClListener(); | 18 explicit NaClListener(); |
| 19 virtual ~NaClListener(); | 19 virtual ~NaClListener(); |
| 20 // Listen for a request to launch a NaCl module. | 20 // Listen for a request to launch a NaCl module. |
| 21 void Listen(); | 21 void Listen(); |
| 22 | 22 void set_debug_enabled(bool value) {debug_enabled_ = value;} |
| 23 private: | 23 private: |
| 24 bool debug_enabled_; |
| 24 void OnStartSelLdr(std::vector<nacl::FileDescriptor> handles, | 25 void OnStartSelLdr(std::vector<nacl::FileDescriptor> handles, |
| 25 bool have_irt_file); | 26 bool have_irt_file); |
| 26 virtual bool OnMessageReceived(const IPC::Message& msg); | 27 virtual bool OnMessageReceived(const IPC::Message& msg); |
| 27 | 28 |
| 28 DISALLOW_COPY_AND_ASSIGN(NaClListener); | 29 DISALLOW_COPY_AND_ASSIGN(NaClListener); |
| 29 }; | 30 }; |
| 30 | 31 |
| 31 #endif // CHROME_NACL_NACL_LISTENER_H_ | 32 #endif // CHROME_NACL_NACL_LISTENER_H_ |
| OLD | NEW |