diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-30 03:18:44 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-30 03:18:44 +0000 |
commit | faea9d2d6b4647180a1339992a1ad9864817c373 (patch) | |
tree | fca9ab649b9cc47c753b83b1407185058281b66b /remoting/host/win/chromoting_module.cc | |
parent | e7eca045582b591d26fc32d740f5a1ea7ba0bc35 (diff) | |
download | chromium_src-faea9d2d6b4647180a1339992a1ad9864817c373.zip chromium_src-faea9d2d6b4647180a1339992a1ad9864817c373.tar.gz chromium_src-faea9d2d6b4647180a1339992a1ad9864817c373.tar.bz2 |
remoting: Use base::MessageLoop.
BUG=236029
R=alexeypa@chromium.org
Review URL: https://chromiumcodereview.appspot.com/14314026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197247 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/win/chromoting_module.cc')
-rw-r--r-- | remoting/host/win/chromoting_module.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/win/chromoting_module.cc b/remoting/host/win/chromoting_module.cc index 6be0a50..47c7691 100644 --- a/remoting/host/win/chromoting_module.cc +++ b/remoting/host/win/chromoting_module.cc @@ -116,7 +116,7 @@ bool ChromotingModule::Run() { } // Arrange to run |message_loop| until no components depend on it. - MessageLoop message_loop(MessageLoop::TYPE_UI); + base::MessageLoop message_loop(base::MessageLoop::TYPE_UI); base::RunLoop run_loop; g_module_task_runner.Get() = new AutoThreadTaskRunner( message_loop.message_loop_proxy(), run_loop.QuitClosure()); |