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

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: fix %lu -> %zu 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
« no previous file with comments | « ui/ozone/public/input_controller.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..c3026909dccc573742dda6602ef82144f4453b0e 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) {
+ reply.Run(scoped_ptr<std::string>(new std::string));
+}
+
void StubInputController::DisableInternalTouchpad() {
NOTIMPLEMENTED();
}
« no previous file with comments | « ui/ozone/public/input_controller.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698