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

Unified Diff: remoting/host/simple_host_process.cc

Issue 6780014: Clean up remoting project (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: got rid of ref counting on user authenticator 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
« no previous file with comments | « remoting/host/screen_recorder_unittest.cc ('k') | remoting/host/user_authenticator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/simple_host_process.cc
diff --git a/remoting/host/simple_host_process.cc b/remoting/host/simple_host_process.cc
index a0cebf57ff45d32d6e355bd756a6c70b11b8e60b..7c3a595cb7622763e1909eb3a0b18f5926de6470 100644
--- a/remoting/host/simple_host_process.cc
+++ b/remoting/host/simple_host_process.cc
@@ -131,12 +131,12 @@ int main(int argc, char** argv) {
if (fake) {
remoting::Capturer* capturer =
new remoting::CapturerFake();
- remoting::protocol::InputStub* input_stub =
- CreateEventExecutor(context.ui_message_loop(), capturer);
+ remoting::EventExecutor* event_executor =
+ remoting::EventExecutor::Create(context.ui_message_loop(), capturer);
remoting::Curtain* curtain = remoting::Curtain::Create();
host = ChromotingHost::Create(
&context, config,
- new DesktopEnvironment(capturer, input_stub, curtain));
+ new DesktopEnvironment(capturer, event_executor, curtain));
} else {
host = ChromotingHost::Create(&context, config);
}
« no previous file with comments | « remoting/host/screen_recorder_unittest.cc ('k') | remoting/host/user_authenticator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698