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

Unified Diff: content/browser/renderer_host/input/input_router_impl_unittest.cc

Issue 2663493003: Move the TouchEventQueue to be completely virtual. (Closed)
Patch Set: Fix nits Created 3 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: content/browser/renderer_host/input/input_router_impl_unittest.cc
diff --git a/content/browser/renderer_host/input/input_router_impl_unittest.cc b/content/browser/renderer_host/input/input_router_impl_unittest.cc
index ecb3143a46d74e63eb7d8fa02295624ef27f6b63..d7fc65b2a31a6b06f5894da02e35ebf1753e880d 100644
--- a/content/browser/renderer_host/input/input_router_impl_unittest.cc
+++ b/content/browser/renderer_host/input/input_router_impl_unittest.cc
@@ -304,11 +304,11 @@ class InputRouterImplTest : public testing::Test {
}
bool TouchEventQueueEmpty() const {
- return input_router()->touch_event_queue_.empty();
+ return input_router()->touch_event_queue_->Empty();
}
bool TouchEventTimeoutEnabled() const {
- return input_router()->touch_event_queue_.IsAckTimeoutEnabled();
+ return input_router()->touch_event_queue_->IsAckTimeoutEnabled();
}
void RequestNotificationWhenFlushed() const {

Powered by Google App Engine
This is Rietveld 408576698