Initial patch set to implement improved touch support for screen
magnification
BUG=670526
TEST=none
Review-Url: https://codereview.chromium.org/2641733002
Cr-Commit-Position: refs/heads/master@{#450259}
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index c5d84898..855e4aeb 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -2236,6 +2236,14 @@
FEATURE_VALUE_TYPE(device::kNewUsbBackend)},
#endif // defined(OS_WIN)
+#if defined(OS_CHROMEOS)
+ {"enable-touch-support-for-screen-magnifier",
+ IDS_FLAGS_ENABLE_TOUCH_SUPPORT_FOR_SCREEN_MAGNIFIER_NAME,
+ IDS_FLAGS_ENABLE_TOUCH_SUPPORT_FOR_SCREEN_MAGNIFIER_DESCRIPTION, kOsCrOS,
+ SINGLE_VALUE_TYPE(
+ chromeos::switches::kEnableTouchSupportForScreenMagnifier)},
+#endif // OS_CHROMEOS
+
// NOTE: Adding new command-line switches requires adding corresponding
// entries to enum "LoginCustomFlags" in histograms.xml. See note in
// histograms.xml and don't forget to run AboutFlagsHistogramTest unit test.