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

Side by Side Diff: Source/core/frame/Frame.cpp

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/fetch/ImageResource.cpp ('k') | Source/core/frame/FrameView.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
51 #include "core/frame/DOMWindow.h" 51 #include "core/frame/DOMWindow.h"
52 #include "core/page/EventHandler.h" 52 #include "core/page/EventHandler.h"
53 #include "core/page/FocusController.h" 53 #include "core/page/FocusController.h"
54 #include "core/frame/FrameDestructionObserver.h" 54 #include "core/frame/FrameDestructionObserver.h"
55 #include "core/frame/FrameView.h" 55 #include "core/frame/FrameView.h"
56 #include "core/page/Page.h" 56 #include "core/page/Page.h"
57 #include "core/page/Settings.h" 57 #include "core/page/Settings.h"
58 #include "core/frame/animation/AnimationController.h" 58 #include "core/frame/animation/AnimationController.h"
59 #include "core/page/scrolling/ScrollingCoordinator.h" 59 #include "core/page/scrolling/ScrollingCoordinator.h"
60 #include "core/platform/DragImage.h" 60 #include "core/platform/DragImage.h"
61 #include "core/platform/graphics/GraphicsContext.h"
62 #include "core/platform/graphics/ImageBuffer.h"
63 #include "core/rendering/HitTestResult.h" 61 #include "core/rendering/HitTestResult.h"
64 #include "core/rendering/RenderLayerCompositor.h" 62 #include "core/rendering/RenderLayerCompositor.h"
65 #include "core/rendering/RenderPart.h" 63 #include "core/rendering/RenderPart.h"
66 #include "core/rendering/RenderView.h" 64 #include "core/rendering/RenderView.h"
67 #include "core/svg/SVGDocument.h" 65 #include "core/svg/SVGDocument.h"
66 #include "platform/graphics/GraphicsContext.h"
67 #include "platform/graphics/ImageBuffer.h"
68 #include "wtf/PassOwnPtr.h" 68 #include "wtf/PassOwnPtr.h"
69 #include "wtf/RefCountedLeakCounter.h" 69 #include "wtf/RefCountedLeakCounter.h"
70 #include "wtf/StdLibExtras.h" 70 #include "wtf/StdLibExtras.h"
71 71
72 using namespace std; 72 using namespace std;
73 73
74 namespace WebCore { 74 namespace WebCore {
75 75
76 using namespace HTMLNames; 76 using namespace HTMLNames;
77 77
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 if (!m_page) 695 if (!m_page)
696 return 0; 696 return 0;
697 697
698 double ratio = m_page->deviceScaleFactor(); 698 double ratio = m_page->deviceScaleFactor();
699 if (RuntimeEnabledFeatures::devicePixelRatioIncludesZoomEnabled()) 699 if (RuntimeEnabledFeatures::devicePixelRatioIncludesZoomEnabled())
700 ratio *= pageZoomFactor(); 700 ratio *= pageZoomFactor();
701 return ratio; 701 return ratio;
702 } 702 }
703 703
704 } // namespace WebCore 704 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/fetch/ImageResource.cpp ('k') | Source/core/frame/FrameView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698