| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "web/DevToolsEmulator.h" | 5 #include "web/DevToolsEmulator.h" |
| 6 | 6 |
| 7 #include "core/events/WebInputEventConversion.h" |
| 7 #include "core/exported/WebViewBase.h" | 8 #include "core/exported/WebViewBase.h" |
| 8 #include "core/frame/FrameView.h" | 9 #include "core/frame/FrameView.h" |
| 9 #include "core/frame/Settings.h" | 10 #include "core/frame/Settings.h" |
| 10 #include "core/frame/VisualViewport.h" | 11 #include "core/frame/VisualViewport.h" |
| 11 #include "core/input/EventHandler.h" | 12 #include "core/input/EventHandler.h" |
| 12 #include "core/page/Page.h" | 13 #include "core/page/Page.h" |
| 13 #include "core/style/ComputedStyle.h" | 14 #include "core/style/ComputedStyle.h" |
| 14 #include "platform/RuntimeEnabledFeatures.h" | 15 #include "platform/RuntimeEnabledFeatures.h" |
| 15 #include "platform/geometry/FloatRect.h" | 16 #include "platform/geometry/FloatRect.h" |
| 16 #include "platform/geometry/FloatSize.h" | 17 #include "platform/geometry/FloatSize.h" |
| 17 #include "platform/geometry/IntRect.h" | 18 #include "platform/geometry/IntRect.h" |
| 18 #include "platform/geometry/IntSize.h" | 19 #include "platform/geometry/IntSize.h" |
| 19 #include "platform/graphics/GraphicsLayer.h" | 20 #include "platform/graphics/GraphicsLayer.h" |
| 20 #include "platform/loader/fetch/MemoryCache.h" | 21 #include "platform/loader/fetch/MemoryCache.h" |
| 21 #include "platform/wtf/PtrUtil.h" | 22 #include "platform/wtf/PtrUtil.h" |
| 22 #include "public/platform/WebLayerTreeView.h" | 23 #include "public/platform/WebLayerTreeView.h" |
| 23 #include "web/WebInputEventConversion.h" | |
| 24 #include "web/WebLocalFrameImpl.h" | 24 #include "web/WebLocalFrameImpl.h" |
| 25 #include "web/WebSettingsImpl.h" | 25 #include "web/WebSettingsImpl.h" |
| 26 | 26 |
| 27 namespace { | 27 namespace { |
| 28 | 28 |
| 29 static float calculateDeviceScaleAdjustment(int width, | 29 static float calculateDeviceScaleAdjustment(int width, |
| 30 int height, | 30 int height, |
| 31 float deviceScaleFactor) { | 31 float deviceScaleFactor) { |
| 32 // Chromium on Android uses a device scale adjustment for fonts used in text | 32 // Chromium on Android uses a device scale adjustment for fonts used in text |
| 33 // autosizing for improved legibility. This function computes this adjusted | 33 // autosizing for improved legibility. This function computes this adjusted |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 last_pinch_anchor_css_.reset(); | 551 last_pinch_anchor_css_.reset(); |
| 552 last_pinch_anchor_dip_.reset(); | 552 last_pinch_anchor_dip_.reset(); |
| 553 } | 553 } |
| 554 return true; | 554 return true; |
| 555 } | 555 } |
| 556 | 556 |
| 557 return false; | 557 return false; |
| 558 } | 558 } |
| 559 | 559 |
| 560 } // namespace blink | 560 } // namespace blink |
| OLD | NEW |