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

Unified Diff: ash/host/root_window_host_factory.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: ash/host/root_window_host_factory.cc
diff --git a/ash/host/root_window_host_factory.cc b/ash/host/root_window_host_factory.cc
index a0dbc0e59069c95814d311b2986fb211111f680e..b9ec0fcda8517a4c9f7335fc1bf81489d6502aeb 100644
--- a/ash/host/root_window_host_factory.cc
+++ b/ash/host/root_window_host_factory.cc
@@ -14,8 +14,9 @@ class RootWindowHostFactoryImpl : public ash::RootWindowHostFactory {
// Overridden from RootWindowHostFactory:
virtual aura::RootWindowHost* CreateRootWindowHost(
- const gfx::Rect& initial_bounds) OVERRIDE {
- return aura::RootWindowHost::Create(initial_bounds);
+ const gfx::Rect& initial_bounds,
+ bool is_internal_display) OVERRIDE {
+ return aura::RootWindowHost::Create(initial_bounds, is_internal_display);
}
};

Powered by Google App Engine
This is Rietveld 408576698