| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_NACL_BROKER_THREAD_H_ | |
| 6 #define CHROME_NACL_BROKER_THREAD_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include "base/process.h" | |
| 10 #include "chrome/common/nacl_types.h" | |
| 11 #include "content/common/child_thread.h" | |
| 12 | |
| 13 #if defined(OS_WIN) | |
| 14 #include "sandbox/src/sandbox.h" | |
| 15 #endif | |
| 16 | |
| 17 // The BrokerThread class represents the thread that handles the messages from | |
| 18 // the browser process and starts NaCl loader processes. | |
| 19 class NaClBrokerThread : public ChildThread { | |
| 20 public: | |
| 21 NaClBrokerThread(); | |
| 22 ~NaClBrokerThread(); | |
| 23 // Returns the one NaCl thread. | |
| 24 static NaClBrokerThread* current(); | |
| 25 | |
| 26 // IPC::Channel::Listener implementation. | |
| 27 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; | |
| 28 | |
| 29 private: | |
| 30 virtual bool OnControlMessageReceived(const IPC::Message& msg); | |
| 31 void OnLaunchLoaderThroughBroker(const std::wstring& loader_channel_id); | |
| 32 void OnShareBrowserHandle(int browser_handle); | |
| 33 void OnStopBroker(); | |
| 34 | |
| 35 base::ProcessHandle browser_handle_; | |
| 36 sandbox::BrokerServices* broker_services_; | |
| 37 | |
| 38 DISALLOW_COPY_AND_ASSIGN(NaClBrokerThread); | |
| 39 }; | |
| 40 | |
| 41 #endif // CHROME_NACL_BROKER_THREAD_H_ | |
| OLD | NEW |