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

Unified Diff: remoting/host/desktop_environment.cc

Issue 6780014: Clean up remoting project (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a compile glitch on Windows Created 9 years, 9 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
Index: remoting/host/desktop_environment.cc
diff --git a/remoting/host/desktop_environment.cc b/remoting/host/desktop_environment.cc
index cae6016369867722d2c660935a383a522ebadb01..3fb128aab7a41f70a15d7f0578f7caa0ee82decb 100644
--- a/remoting/host/desktop_environment.cc
+++ b/remoting/host/desktop_environment.cc
@@ -6,17 +6,15 @@
#include "remoting/host/capturer.h"
Lambros 2011/04/01 15:54:00 Nit: These three #includes might not be needed.
dmac 2011/04/01 21:15:07 Sadly they are required for the destructor to comp
#include "remoting/host/curtain.h"
-#include "remoting/protocol/input_stub.h"
-
-using remoting::protocol::InputStub;
+#include "remoting/host/event_executor.h"
namespace remoting {
DesktopEnvironment::DesktopEnvironment(Capturer* capturer,
- InputStub* input_stub,
+ EventExecutor* event_executor,
Curtain* curtain)
: capturer_(capturer),
- input_stub_(input_stub),
+ event_executor_(event_executor),
curtain_(curtain) {
}

Powered by Google App Engine
This is Rietveld 408576698