Index: ui/base/layout.cc |
diff --git a/ui/base/layout.cc b/ui/base/layout.cc |
index a17ffc638219b87c75ff8b9ecc3a74935e25a157..801ba192d1260866f0204e57568f6d9dd59226c3 100644 |
--- a/ui/base/layout.cc |
+++ b/ui/base/layout.cc |
@@ -73,8 +73,10 @@ std::vector<ScaleFactor>& GetSupportedScaleFactorsInternal() { |
static std::vector<ScaleFactor>* supported_scale_factors = |
new std::vector<ScaleFactor>(); |
if (supported_scale_factors->empty()) { |
- // 100P is always a supported scale factor. |
+#if !defined(OS_IOS) |
+ // On platforms other than iOS, 100P is always a supported scale factor. |
supported_scale_factors->push_back(SCALE_FACTOR_100P); |
+#endif |
#if defined(OS_IOS) |
// TODO(ios): 100p should not be necessary on iOS retina devices. However |