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

Unified Diff: remoting/host/session_event_executor_win.cc

Issue 10832068: Moving Windows-only files: remoting/host -> remoting/host/win. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/session_event_executor_win.h ('k') | remoting/host/verify_config_window_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/session_event_executor_win.cc
===================================================================
--- remoting/host/session_event_executor_win.cc (revision 149037)
+++ remoting/host/session_event_executor_win.cc (working copy)
@@ -13,10 +13,10 @@
#include "base/win/windows_version.h"
#include "ipc/ipc_channel.h"
#include "ipc/ipc_channel_proxy.h"
+#include "remoting/host/chromoting_messages.h"
+#include "remoting/host/win/desktop.h"
+#include "remoting/host/win/scoped_thread_desktop.h"
#include "remoting/proto/event.pb.h"
-#include "remoting/host/chromoting_messages.h"
-#include "remoting/host/desktop_win.h"
-#include "remoting/host/scoped_thread_desktop_win.h"
namespace {
@@ -46,12 +46,12 @@
const wchar_t kSasWindowClassName[] = L"SAS window class";
const wchar_t kSasWindowTitle[] = L"SAS window";
- scoped_ptr<remoting::DesktopWin> winlogon_desktop(
- remoting::DesktopWin::GetDesktop(kWinlogonDesktopName));
+ scoped_ptr<remoting::Desktop> winlogon_desktop(
+ remoting::Desktop::GetDesktop(kWinlogonDesktopName));
if (!winlogon_desktop.get())
return;
- remoting::ScopedThreadDesktopWin desktop;
+ remoting::ScopedThreadDesktop desktop;
if (!desktop.SetThreadDesktop(winlogon_desktop.Pass()))
return;
@@ -195,7 +195,7 @@
void SessionEventExecutorWin::SwitchToInputDesktop() {
// Switch to the desktop receiving user input if different from the current
// one.
- scoped_ptr<DesktopWin> input_desktop = DesktopWin::GetInputDesktop();
+ scoped_ptr<Desktop> input_desktop = Desktop::GetInputDesktop();
if (input_desktop.get() != NULL && !desktop_.IsSame(*input_desktop)) {
// If SetThreadDesktop() fails, the thread is still assigned a desktop.
// So we can continue capture screen bits, just from a diffected desktop.
« no previous file with comments | « remoting/host/session_event_executor_win.h ('k') | remoting/host/verify_config_window_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698