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

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

Issue 12087124: Disable touch calibration on external touchscreen. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix Win compilation take 2 + rebase Created 7 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/aura/test/test_screen.cc
diff --git a/ui/aura/test/test_screen.cc b/ui/aura/test/test_screen.cc
index b80b73f19df64a7f5d3683bcb022d0f4912b184e..026c6af3d74d75db460ec30f518b3988ed69071b 100644
--- a/ui/aura/test/test_screen.cc
+++ b/ui/aura/test/test_screen.cc
@@ -28,7 +28,8 @@ TestScreen::~TestScreen() {
RootWindow* TestScreen::CreateRootWindowForPrimaryDisplay() {
DCHECK(!root_window_);
- root_window_ = new RootWindow(RootWindow::CreateParams(display_.bounds()));
+ root_window_ = new RootWindow(
+ RootWindow::CreateParams(display_.bounds(), true));
root_window_->AddObserver(this);
root_window_->Init();
if (UseFullscreenHostWindow())

Powered by Google App Engine
This is Rietveld 408576698