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

Unified Diff: remoting/host/event_executor_linux.cc

Issue 7062042: 1;2305;0cRevert 86971 - Move media library AutoTaskRunner to base and rename ScopedTaskRunner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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
« no previous file with comments | « remoting/host/client_session.cc ('k') | remoting/host/event_executor_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/event_executor_linux.cc
===================================================================
--- remoting/host/event_executor_linux.cc (revision 86971)
+++ remoting/host/event_executor_linux.cc (working copy)
@@ -14,6 +14,7 @@
#include "base/logging.h"
#include "base/message_loop.h"
#include "base/task.h"
+#include "media/base/callback.h"
#include "remoting/proto/internal.pb.h"
namespace remoting {
@@ -277,13 +278,13 @@
}
void EventExecutorLinux::InjectKeyEvent(const KeyEvent* event, Task* done) {
- base::ScopedTaskRunner done_runner(done);
+ media::AutoTaskRunner done_runner(done);
if (MessageLoop::current() != message_loop_) {
message_loop_->PostTask(
FROM_HERE,
NewRunnableMethod(this, &EventExecutorLinux::InjectKeyEvent,
- event, done_runner.Release()));
+ event, done_runner.release()));
return;
}
@@ -312,13 +313,13 @@
void EventExecutorLinux::InjectMouseEvent(const MouseEvent* event,
Task* done) {
- base::ScopedTaskRunner done_runner(done);
+ media::AutoTaskRunner done_runner(done);
if (MessageLoop::current() != message_loop_) {
message_loop_->PostTask(
FROM_HERE,
NewRunnableMethod(this, &EventExecutorLinux::InjectMouseEvent,
- event, done_runner.Release()));
+ event, done_runner.release()));
return;
}
« no previous file with comments | « remoting/host/client_session.cc ('k') | remoting/host/event_executor_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698