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

Unified Diff: remoting/host/event_executor_win.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/event_executor_mac.cc ('k') | remoting/host/screen_recorder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/event_executor_win.cc
===================================================================
--- remoting/host/event_executor_win.cc (revision 86971)
+++ remoting/host/event_executor_win.cc (working copy)
@@ -46,13 +46,13 @@
}
void EventExecutorWin::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, &EventExecutorWin::InjectKeyEvent,
- event, done_runner.Release()));
+ event, done_runner.release()));
return;
}
@@ -60,13 +60,13 @@
}
void EventExecutorWin::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, &EventExecutorWin::InjectMouseEvent,
- event, done_runner.Release()));
+ event, done_runner.release()));
return;
}
« no previous file with comments | « remoting/host/event_executor_mac.cc ('k') | remoting/host/screen_recorder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698