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

Side by Side Diff: ui/events/ozone/evdev/input_device_factory_evdev_proxy.cc

Issue 1968923003: Fix include path for moved thread_task_runner_handle.h header in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/events/ozone/evdev/input_device_factory_evdev_proxy.h" 5 #include "ui/events/ozone/evdev/input_device_factory_evdev_proxy.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/thread_task_runner_handle.h" 8 #include "base/threading/thread_task_runner_handle.h"
9 #include "ui/events/ozone/evdev/input_device_factory_evdev.h" 9 #include "ui/events/ozone/evdev/input_device_factory_evdev.h"
10 10
11 namespace ui { 11 namespace ui {
12 12
13 namespace { 13 namespace {
14 14
15 void ForwardGetTouchDeviceStatusReply( 15 void ForwardGetTouchDeviceStatusReply(
16 scoped_refptr<base::SingleThreadTaskRunner> reply_runner, 16 scoped_refptr<base::SingleThreadTaskRunner> reply_runner,
17 const GetTouchDeviceStatusReply& reply, 17 const GetTouchDeviceStatusReply& reply,
18 std::unique_ptr<std::string> status) { 18 std::unique_ptr<std::string> status) {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 const GetTouchEventLogReply& reply) { 88 const GetTouchEventLogReply& reply) {
89 task_runner_->PostTask( 89 task_runner_->PostTask(
90 FROM_HERE, 90 FROM_HERE,
91 base::Bind(&InputDeviceFactoryEvdev::GetTouchEventLog, 91 base::Bind(&InputDeviceFactoryEvdev::GetTouchEventLog,
92 input_device_factory_, out_dir, 92 input_device_factory_, out_dir,
93 base::Bind(&ForwardGetTouchEventLogReply, 93 base::Bind(&ForwardGetTouchEventLogReply,
94 base::ThreadTaskRunnerHandle::Get(), reply))); 94 base::ThreadTaskRunnerHandle::Get(), reply)));
95 } 95 }
96 96
97 } // namespace ui 97 } // namespace ui
OLDNEW
« no previous file with comments | « ui/events/ozone/evdev/input_device_factory_evdev.cc ('k') | ui/events/ozone/evdev/keyboard_evdev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698