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

Unified Diff: remoting/host/chromoting_host_context.cc

Issue 9617027: Chromoting: Implemented security attention sequence (SAS) emulation on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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/chromoting_host_context.cc
diff --git a/remoting/host/chromoting_host_context.cc b/remoting/host/chromoting_host_context.cc
index 6f029438be2c5459c1bf0b098d054ba3db855087..f24d2a744e9f9a90bcce2f693536584168e0abe2 100644
--- a/remoting/host/chromoting_host_context.cc
+++ b/remoting/host/chromoting_host_context.cc
@@ -13,10 +13,12 @@
namespace remoting {
ChromotingHostContext::ChromotingHostContext(
+ base::MessageLoopProxy* io_message_loop,
base::MessageLoopProxy* ui_message_loop)
: main_thread_("ChromotingMainThread"),
encode_thread_("ChromotingEncodeThread"),
desktop_thread_("ChromotingDesktopThread"),
+ io_message_loop_(io_message_loop),
ui_message_loop_(ui_message_loop) {
}
@@ -43,6 +45,10 @@ JingleThread* ChromotingHostContext::jingle_thread() {
return &jingle_thread_;
}
+base::MessageLoopProxy* ChromotingHostContext::io_message_loop() {
+ return io_message_loop_;
+}
+
base::MessageLoopProxy* ChromotingHostContext::ui_message_loop() {
return ui_message_loop_;
}

Powered by Google App Engine
This is Rietveld 408576698