OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
3 * 1999 Lars Knoll <knoll@kde.org> | 3 * 1999 Lars Knoll <knoll@kde.org> |
4 * 1999 Antti Koivisto <koivisto@kde.org> | 4 * 1999 Antti Koivisto <koivisto@kde.org> |
5 * 2000 Simon Hausmann <hausmann@kde.org> | 5 * 2000 Simon Hausmann <hausmann@kde.org> |
6 * 2000 Stefan Schimanski <1Stein@gmx.de> | 6 * 2000 Stefan Schimanski <1Stein@gmx.de> |
7 * 2001 George Staikos <staikos@kde.org> | 7 * 2001 George Staikos <staikos@kde.org> |
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> | 9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> |
10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 #include "core/html/HTMLFrameElementBase.h" | 51 #include "core/html/HTMLFrameElementBase.h" |
52 #include "core/inspector/InspectorInstrumentation.h" | 52 #include "core/inspector/InspectorInstrumentation.h" |
53 #include "core/loader/EmptyClients.h" | 53 #include "core/loader/EmptyClients.h" |
54 #include "core/loader/FrameLoaderClient.h" | 54 #include "core/loader/FrameLoaderClient.h" |
55 #include "core/page/Chrome.h" | 55 #include "core/page/Chrome.h" |
56 #include "core/page/ChromeClient.h" | 56 #include "core/page/ChromeClient.h" |
57 #include "core/page/EventHandler.h" | 57 #include "core/page/EventHandler.h" |
58 #include "core/page/FocusController.h" | 58 #include "core/page/FocusController.h" |
59 #include "core/page/Page.h" | 59 #include "core/page/Page.h" |
60 #include "core/page/scrolling/ScrollingCoordinator.h" | 60 #include "core/page/scrolling/ScrollingCoordinator.h" |
61 #include "core/platform/DragImage.h" | |
62 #include "core/rendering/HitTestResult.h" | 61 #include "core/rendering/HitTestResult.h" |
63 #include "core/rendering/RenderLayerCompositor.h" | 62 #include "core/rendering/RenderLayerCompositor.h" |
64 #include "core/rendering/RenderPart.h" | 63 #include "core/rendering/RenderPart.h" |
65 #include "core/rendering/RenderView.h" | 64 #include "core/rendering/RenderView.h" |
66 #include "core/svg/SVGDocument.h" | 65 #include "core/svg/SVGDocument.h" |
| 66 #include "platform/DragImage.h" |
67 #include "platform/graphics/GraphicsContext.h" | 67 #include "platform/graphics/GraphicsContext.h" |
68 #include "platform/graphics/ImageBuffer.h" | 68 #include "platform/graphics/ImageBuffer.h" |
69 #include "public/platform/WebLayer.h" | 69 #include "public/platform/WebLayer.h" |
70 #include "wtf/PassOwnPtr.h" | 70 #include "wtf/PassOwnPtr.h" |
71 #include "wtf/RefCountedLeakCounter.h" | 71 #include "wtf/RefCountedLeakCounter.h" |
72 #include "wtf/StdLibExtras.h" | 72 #include "wtf/StdLibExtras.h" |
73 | 73 |
74 using namespace std; | 74 using namespace std; |
75 | 75 |
76 namespace WebCore { | 76 namespace WebCore { |
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
714 if (!m_host) | 714 if (!m_host) |
715 return 0; | 715 return 0; |
716 | 716 |
717 double ratio = m_host->deviceScaleFactor(); | 717 double ratio = m_host->deviceScaleFactor(); |
718 if (RuntimeEnabledFeatures::devicePixelRatioIncludesZoomEnabled()) | 718 if (RuntimeEnabledFeatures::devicePixelRatioIncludesZoomEnabled()) |
719 ratio *= pageZoomFactor(); | 719 ratio *= pageZoomFactor(); |
720 return ratio; | 720 return ratio; |
721 } | 721 } |
722 | 722 |
723 } // namespace WebCore | 723 } // namespace WebCore |
OLD | NEW |