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

Unified Diff: ash/touch/touch_observer_hud_unittest.cc

Issue 2118223004: ash: Refactor touch hud drawing to ash/touch_hud as a separate component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove extra dependency and includes; DCHECK; etc Created 4 years, 5 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: ash/touch/touch_observer_hud_unittest.cc
diff --git a/ash/touch/touch_observer_hud_unittest.cc b/ash/touch/touch_observer_hud_unittest.cc
index 7eec15c0cd94e33a3c9c926b92f37d94b029fd4b..ce53028ce53d26cf6f56f6d084a517f55147ad2e 100644
--- a/ash/touch/touch_observer_hud_unittest.cc
+++ b/ash/touch/touch_observer_hud_unittest.cc
@@ -13,6 +13,7 @@
#include "ash/test/display_manager_test_api.h"
#include "ash/touch/touch_hud_debug.h"
#include "ash/touch/touch_hud_projection.h"
+#include "ash/touch_hud/touch_hud_renderer.h"
#include "base/command_line.h"
#include "base/format_macros.h"
#include "base/strings/stringprintf.h"
@@ -283,7 +284,7 @@ class TouchHudProjectionTest : public TouchHudTestBase {
}
int GetInternalTouchPointsCount() {
- return GetInternalTouchHudProjection()->points_.size();
+ return GetInternalTouchHudProjection()->touch_hud_renderer_->points_.size();
}
void SendTouchEventToInternalHud(ui::EventType type,

Powered by Google App Engine
This is Rietveld 408576698