summaryrefslogtreecommitdiffstats
path: root/remoting/host/simple_host_process.cc
diff options
context:
space:
mode:
authorlambroslambrou@google.com <lambroslambrou@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-16 17:33:39 +0000
committerlambroslambrou@google.com <lambroslambrou@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-16 17:33:39 +0000
commit8f449bb11f43d719ae866b09dc56903382567220 (patch)
treee7582266ce2b7de3be91c8762ee48d91414995f1 /remoting/host/simple_host_process.cc
parentfa0c7628aeb14b62d22279d728fa914a021b7acc (diff)
downloadchromium_src-8f449bb11f43d719ae866b09dc56903382567220.zip
chromium_src-8f449bb11f43d719ae866b09dc56903382567220.tar.gz
chromium_src-8f449bb11f43d719ae866b09dc56903382567220.tar.bz2
Retrying submission of http://codereview.chromium.org/7144010/
Run DisconnectWindow::Show/Hide on correct thread. This is to ensure that the DisconnectWindow UI actions are carried out on the proper thread for making platform-native GUI API calls (for example, GTK on Linux). BUG=None TEST=Manual Review URL: http://codereview.chromium.org/7180001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89359 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/simple_host_process.cc')
-rw-r--r--remoting/host/simple_host_process.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/remoting/host/simple_host_process.cc b/remoting/host/simple_host_process.cc
index fc2029c..d62d49b 100644
--- a/remoting/host/simple_host_process.cc
+++ b/remoting/host/simple_host_process.cc
@@ -27,6 +27,7 @@
#include "base/file_path.h"
#include "base/logging.h"
#include "base/mac/scoped_nsautorelease_pool.h"
+#include "base/message_loop.h"
#include "base/path_service.h"
#include "base/test/mock_chrome_application_mac.h"
#include "base/threading/thread.h"
@@ -120,6 +121,11 @@ class SimpleHost {
MessageLoop message_loop(MessageLoop::TYPE_UI);
remoting::ChromotingHostContext context;
+ // static_cast needed to resolve overloaded PostTask member-function.
+ context.SetUITaskPostFunction(base::Bind(
+ static_cast<void(MessageLoop::*)(
+ const tracked_objects::Location&, Task*)>(&MessageLoop::PostTask),
+ base::Unretained(&message_loop)));
context.Start();
base::Thread file_io_thread("FileIO");