Index: ui/views/drag_utils.cc |
diff --git a/ui/views/drag_utils.cc b/ui/views/drag_utils.cc |
index 2597bf2936bc47ddcabfd0214ff6a5d80f657e0e..5c64f482032eba166003979367877ce6039a5417 100644 |
--- a/ui/views/drag_utils.cc |
+++ b/ui/views/drag_utils.cc |
@@ -14,9 +14,6 @@ namespace { |
float GetDeviceScaleForNativeView(views::Widget* widget) { |
float device_scale = 1.0f; |
- // The following code should work on other platforms as well. But we do not |
- // yet care about device scale factor on other platforms. So to keep drag and |
- // drop behavior on other platforms un-touched, we wrap this in the #if guard. |
if (widget && widget->GetNativeView()) { |
gfx::NativeView view = widget->GetNativeView(); |
gfx::Display display = gfx::Screen::GetScreenFor(view)-> |