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

Unified Diff: ui/aura/test/ui_controls_factory_ozone.cc

Issue 2904113002: Replacing WM_TOUCH with WM_POINTER for touch events on Wins 8+ (Closed)
Patch Set: wm touch Created 3 years, 6 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/aura/test/ui_controls_factory_ozone.cc
diff --git a/ui/aura/test/ui_controls_factory_ozone.cc b/ui/aura/test/ui_controls_factory_ozone.cc
index 403757b947503c7c2cf344760960eb90af5a6937..2225ec373e8496b0b57d01f6bbbc14bb7321bc3a 100644
--- a/ui/aura/test/ui_controls_factory_ozone.cc
+++ b/ui/aura/test/ui_controls_factory_ozone.cc
@@ -173,6 +173,10 @@ class UIControlsOzone : public ui_controls::UIControlsAura {
bool SendMouseClick(ui_controls::MouseButton type) override {
return SendMouseEvents(type, ui_controls::UP | ui_controls::DOWN);
}
+ bool SendTouchEvents(int action, int num, int x, int y) override {
+ NOTIMPLEMENTED();
+ return false;
+ }
void RunClosureAfterAllPendingUIEvents(
const base::Closure& closure) override {
if (!closure.is_null())

Powered by Google App Engine
This is Rietveld 408576698