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

Unified Diff: remoting/host/event_executor_linux.cc

Issue 10381115: [Chromoting] The Windows IT2Me host gets any new text items it finds on the clipboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move ClipboardWin to the UI thread, and tidy up. Created 8 years, 7 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/event_executor_linux.cc
diff --git a/remoting/host/event_executor_linux.cc b/remoting/host/event_executor_linux.cc
index bf8856f0e6e01750d2f397a14678d72cf827f34d..5fe35e1cc59feb561f902099ed2e3244288c0c99 100644
--- a/remoting/host/event_executor_linux.cc
+++ b/remoting/host/event_executor_linux.cc
@@ -429,8 +429,9 @@ void EventExecutorLinux::OnSessionFinished() {
} // namespace
-scoped_ptr<EventExecutor> EventExecutor::Create(
- MessageLoop* message_loop, Capturer* capturer) {
+scoped_ptr<EventExecutor> EventExecutor::Create(MessageLoop* message_loop,
+ base::MessageLoopProxy* ui_loop,
+ Capturer* capturer) {
scoped_ptr<EventExecutorLinux> executor(
new EventExecutorLinux(message_loop));
if (!executor->Init())

Powered by Google App Engine
This is Rietveld 408576698