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

Unified Diff: chrome/service/service_process.cc

Issue 3229007: Chromoting: Get screen size locally if it wasn't given in the mouse message.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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 | « no previous file | remoting/host/event_executor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_process.cc
===================================================================
--- chrome/service/service_process.cc (revision 57860)
+++ chrome/service/service_process.cc (working copy)
@@ -72,7 +72,7 @@
// Check if remoting host is already enabled.
if (values->GetBoolean(prefs::kRemotingHostEnabled, &remoting_host_enabled) &&
- remoting_host_enabled) {
+ remoting_host_enabled) {
// If true then we start the host.
StartChromotingHost();
}
@@ -170,13 +170,13 @@
#if defined(OS_WIN)
capturer.reset(new remoting::CapturerGdi());
- executor.reset(new remoting::EventExecutorWin());
+ executor.reset(new remoting::EventExecutorWin(capturer.get()));
#elif defined(OS_LINUX)
capturer.reset(new remoting::CapturerFake());
- executor.reset(new remoting::EventExecutorLinux());
+ executor.reset(new remoting::EventExecutorLinux(capturer.get()));
#elif defined(OS_MACOSX)
capturer.reset(new remoting::CapturerMac());
- executor.reset(new remoting::EventExecutorMac());
+ executor.reset(new remoting::EventExecutorMac(capturer.get()));
#endif
encoder.reset(new remoting::EncoderZlib());
« no previous file with comments | « no previous file | remoting/host/event_executor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698