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

Side by Side Diff: chrome/nacl/broker_thread.h

Issue 7863024: Make the NaCl windows 64 bit binaries not depend on chrome targets. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: simplify chrome_exe.gypi Created 9 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/nacl.gypi ('k') | chrome/nacl/broker_thread.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « chrome/nacl.gypi ('k') | chrome/nacl/broker_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698