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

Unified Diff: ui/ozone/public/input_controller.cc

Issue 864253002: Dump property values for the touch log source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use base::WorkerPool to post task in input_controller_evdev Created 5 years, 11 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
Index: ui/ozone/public/input_controller.cc
diff --git a/ui/ozone/public/input_controller.cc b/ui/ozone/public/input_controller.cc
index 1dce350d00cc37f607c79a55891b59d7fd11ab25..94b99e00e6000fa18d9e44e6507ce47dc6fff1b7 100644
--- a/ui/ozone/public/input_controller.cc
+++ b/ui/ozone/public/input_controller.cc
@@ -36,6 +36,7 @@ class StubInputController : public InputController {
void SetMouseSensitivity(int value) override;
void SetPrimaryButtonRight(bool right) override;
void SetTapToClickPaused(bool state) override;
+ void GetTouchDeviceStatus(const GetTouchDeviceStatusReply& reply) override;
void DisableInternalTouchpad() override;
void EnableInternalTouchpad() override;
void DisableInternalKeyboardExceptKeys(
@@ -124,6 +125,11 @@ void StubInputController::SetTapToClickPaused(bool state) {
NOTIMPLEMENTED();
}
+void StubInputController::GetTouchDeviceStatus(
+ const GetTouchDeviceStatusReply& reply) {
+ NOTIMPLEMENTED();
spang 2015/01/27 20:15:13 I think you should call the reply to avoid waiting
Shecky Lin 2015/01/27 23:08:16 Done.
+}
+
void StubInputController::DisableInternalTouchpad() {
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698