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

Side by Side Diff: remoting/host/desktop_session_win.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « remoting/host/desktop_process_main.cc ('k') | remoting/host/desktop_session_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/file_path.h" 8 #include "base/file_path.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 // Restarts the desktop process. 67 // Restarts the desktop process.
68 void RestartDesktopProcess(const tracked_objects::Location& location); 68 void RestartDesktopProcess(const tracked_objects::Location& location);
69 69
70 // Task runner on which public methods of this class should be called. 70 // Task runner on which public methods of this class should be called.
71 scoped_refptr<AutoThreadTaskRunner> main_task_runner_; 71 scoped_refptr<AutoThreadTaskRunner> main_task_runner_;
72 72
73 // Message loop used by the IPC channel. 73 // Message loop used by the IPC channel.
74 scoped_refptr<AutoThreadTaskRunner> io_task_runner_; 74 scoped_refptr<AutoThreadTaskRunner> io_task_runner_;
75 75
76 // Contains the full path to the desktop binary. 76 // Contains the full path to the desktop binary.
77 FilePath desktop_binary_; 77 base::FilePath desktop_binary_;
78 78
79 // Handle of the desktop process. 79 // Handle of the desktop process.
80 base::win::ScopedHandle desktop_process_; 80 base::win::ScopedHandle desktop_process_;
81 81
82 // Launches and monitors the desktop process. 82 // Launches and monitors the desktop process.
83 scoped_ptr<WorkerProcessLauncher> launcher_; 83 scoped_ptr<WorkerProcessLauncher> launcher_;
84 84
85 // Pointer used to unsubscribe from session attach and detach events. 85 // Pointer used to unsubscribe from session attach and detach events.
86 WtsConsoleMonitor* monitor_; 86 WtsConsoleMonitor* monitor_;
87 87
88 scoped_ptr<SasInjector> sas_injector_; 88 scoped_ptr<SasInjector> sas_injector_;
89 89
90 DISALLOW_COPY_AND_ASSIGN(DesktopSessionWin); 90 DISALLOW_COPY_AND_ASSIGN(DesktopSessionWin);
91 }; 91 };
92 92
93 } // namespace remoting 93 } // namespace remoting
94 94
95 #endif // REMOTING_HOST_DESKTOP_SESSION_WIN_H_ 95 #endif // REMOTING_HOST_DESKTOP_SESSION_WIN_H_
OLDNEW
« no previous file with comments | « remoting/host/desktop_process_main.cc ('k') | remoting/host/desktop_session_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698