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

Unified Diff: content/shell/minimal_ash.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: content/shell/minimal_ash.cc
diff --git a/content/shell/minimal_ash.cc b/content/shell/minimal_ash.cc
index fdecda2ad69ad34b08d3877508eacc4698dc21a2..93d52bf80f0378a3ecb56cce2eba1162282897fb 100644
--- a/content/shell/minimal_ash.cc
+++ b/content/shell/minimal_ash.cc
@@ -16,7 +16,8 @@ namespace content {
MinimalAsh::MinimalAsh(const gfx::Size& default_window_size) {
root_window_.reset(new aura::RootWindow(
aura::RootWindow::CreateParams(
- gfx::Rect(default_window_size))));
+ gfx::Rect(default_window_size),
+ true)));
root_window_->Init();
aura::client::SetStackingClient(root_window_.get(), this);

Powered by Google App Engine
This is Rietveld 408576698