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

Unified Diff: ui/base/layout.cc

Issue 247193002: Remove touch layout (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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/base/layout.cc
diff --git a/ui/base/layout.cc b/ui/base/layout.cc
index 01c38f1d5414cc431705df7021de457b2b774113..783ab5a989bca63aadb045e7334d634b5185e6a7 100644
--- a/ui/base/layout.cc
+++ b/ui/base/layout.cc
@@ -34,33 +34,6 @@ bool ScaleFactorComparator(const ScaleFactor& lhs, const ScaleFactor& rhs){
std::vector<ScaleFactor>* g_supported_scale_factors = NULL;
-#if defined(OS_WIN)
-// Helper function that determines whether we want to optimize the UI for touch.
-bool UseTouchOptimizedUI() {
- // If --touch-optimized-ui is specified and not set to "auto", then override
- // the hardware-determined setting (eg. for testing purposes).
- static bool has_touch_optimized_ui = CommandLine::ForCurrentProcess()->
- HasSwitch(switches::kTouchOptimizedUI);
- if (has_touch_optimized_ui) {
- const std::string switch_value = CommandLine::ForCurrentProcess()->
- GetSwitchValueASCII(switches::kTouchOptimizedUI);
-
- // Note that simply specifying the switch is the same as enabled.
- if (switch_value.empty() ||
- switch_value == switches::kTouchOptimizedUIEnabled) {
- return true;
- } else if (switch_value == switches::kTouchOptimizedUIDisabled) {
- return false;
- } else if (switch_value != switches::kTouchOptimizedUIAuto) {
- LOG(ERROR) << "Invalid --touch-optimized-ui option: " << switch_value;
- }
- }
-
- // We use the touch layout only when we are running in Metro mode.
- return base::win::IsMetroProcess() && ui::IsTouchDevicePresent();
-}
-#endif // defined(OS_WIN)
-
const float kScaleFactorScales[] = {1.0f, 1.0f, 1.25f, 1.33f, 1.4f, 1.5f, 1.8f,
2.0f, 3.0f};
COMPILE_ASSERT(NUM_SCALE_FACTORS == arraysize(kScaleFactorScales),
@@ -68,14 +41,6 @@ COMPILE_ASSERT(NUM_SCALE_FACTORS == arraysize(kScaleFactorScales),
} // namespace
-DisplayLayout GetDisplayLayout() {
-#if defined(OS_WIN)
- if (UseTouchOptimizedUI())
- return LAYOUT_TOUCH;
-#endif
- return LAYOUT_DESKTOP;
-}
-
void SetSupportedScaleFactors(
const std::vector<ui::ScaleFactor>& scale_factors) {
if (g_supported_scale_factors != NULL)

Powered by Google App Engine
This is Rietveld 408576698