| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 REMOTING_HOST_DESKTOP_PROCESS_H_ | 5 #ifndef REMOTING_HOST_DESKTOP_PROCESS_H_ |
| 6 #define REMOTING_HOST_DESKTOP_PROCESS_H_ | 6 #define REMOTING_HOST_DESKTOP_PROCESS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 // Name of the IPC channel connecting the desktop process with the daemon | 51 // Name of the IPC channel connecting the desktop process with the daemon |
| 52 // process. | 52 // process. |
| 53 std::string daemon_channel_name_; | 53 std::string daemon_channel_name_; |
| 54 | 54 |
| 55 // IPC channel connecting the desktop process with the daemon process. | 55 // IPC channel connecting the desktop process with the daemon process. |
| 56 scoped_ptr<IPC::ChannelProxy> daemon_channel_; | 56 scoped_ptr<IPC::ChannelProxy> daemon_channel_; |
| 57 | 57 |
| 58 // Provides screen/audio capturing and input injection services for | 58 // Provides screen/audio capturing and input injection services for |
| 59 // the network process. | 59 // the network process. |
| 60 scoped_ptr<DesktopSessionAgent> desktop_agent_; | 60 scoped_refptr<DesktopSessionAgent> desktop_agent_; |
| 61 | 61 |
| 62 DISALLOW_COPY_AND_ASSIGN(DesktopProcess); | 62 DISALLOW_COPY_AND_ASSIGN(DesktopProcess); |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace remoting | 65 } // namespace remoting |
| 66 | 66 |
| 67 #endif // REMOTING_HOST_DESKTOP_PROCESS_H_ | 67 #endif // REMOTING_HOST_DESKTOP_PROCESS_H_ |
| OLD | NEW |