| 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_SESSION_WIN_H_ | 5 #ifndef REMOTING_HOST_DESKTOP_SESSION_WIN_H_ |
| 6 #define REMOTING_HOST_DESKTOP_SESSION_WIN_H_ | 6 #define REMOTING_HOST_DESKTOP_SESSION_WIN_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/time.h" | 10 #include "base/time/time.h" |
| 11 #include "base/timer.h" | 11 #include "base/timer/timer.h" |
| 12 #include "base/win/scoped_handle.h" | 12 #include "base/win/scoped_handle.h" |
| 13 #include "ipc/ipc_platform_file.h" | 13 #include "ipc/ipc_platform_file.h" |
| 14 #include "remoting/host/desktop_session.h" | 14 #include "remoting/host/desktop_session.h" |
| 15 #include "remoting/host/win/wts_terminal_observer.h" | 15 #include "remoting/host/win/wts_terminal_observer.h" |
| 16 #include "remoting/host/worker_process_ipc_delegate.h" | 16 #include "remoting/host/worker_process_ipc_delegate.h" |
| 17 | 17 |
| 18 namespace tracked_objects { | 18 namespace tracked_objects { |
| 19 class Location; | 19 class Location; |
| 20 } // namespace tracked_objects | 20 } // namespace tracked_objects |
| 21 | 21 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 base::OneShotTimer<DesktopSessionWin> session_attach_timer_; | 126 base::OneShotTimer<DesktopSessionWin> session_attach_timer_; |
| 127 | 127 |
| 128 base::Time last_timestamp_; | 128 base::Time last_timestamp_; |
| 129 | 129 |
| 130 DISALLOW_COPY_AND_ASSIGN(DesktopSessionWin); | 130 DISALLOW_COPY_AND_ASSIGN(DesktopSessionWin); |
| 131 }; | 131 }; |
| 132 | 132 |
| 133 } // namespace remoting | 133 } // namespace remoting |
| 134 | 134 |
| 135 #endif // REMOTING_HOST_DESKTOP_SESSION_WIN_H_ | 135 #endif // REMOTING_HOST_DESKTOP_SESSION_WIN_H_ |
| OLD | NEW |