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

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 2565073002: Implement the algorithm to test merging and overlap in PaintArtifactCompositor. (Closed)
Patch Set: none Created 4 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
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 Dirk Mueller <mueller@kde.org> 5 * 2000 Dirk Mueller <mueller@kde.org>
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com)
8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
9 * Copyright (C) 2009 Google Inc. All rights reserved. 9 * Copyright (C) 2009 Google Inc. All rights reserved.
10 * 10 *
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 #include "core/page/AutoscrollController.h" 87 #include "core/page/AutoscrollController.h"
88 #include "core/page/ChromeClient.h" 88 #include "core/page/ChromeClient.h"
89 #include "core/page/FocusController.h" 89 #include "core/page/FocusController.h"
90 #include "core/page/FrameTree.h" 90 #include "core/page/FrameTree.h"
91 #include "core/page/Page.h" 91 #include "core/page/Page.h"
92 #include "core/page/scrolling/RootScrollerUtil.h" 92 #include "core/page/scrolling/RootScrollerUtil.h"
93 #include "core/page/scrolling/ScrollingCoordinator.h" 93 #include "core/page/scrolling/ScrollingCoordinator.h"
94 #include "core/page/scrolling/TopDocumentRootScrollerController.h" 94 #include "core/page/scrolling/TopDocumentRootScrollerController.h"
95 #include "core/paint/FramePainter.h" 95 #include "core/paint/FramePainter.h"
96 #include "core/paint/PaintLayer.h" 96 #include "core/paint/PaintLayer.h"
97 #include "core/paint/PaintPropertyTreePrinter.h"
97 #include "core/paint/PrePaintTreeWalk.h" 98 #include "core/paint/PrePaintTreeWalk.h"
98 #include "core/plugins/PluginView.h" 99 #include "core/plugins/PluginView.h"
99 #include "core/style/ComputedStyle.h" 100 #include "core/style/ComputedStyle.h"
100 #include "core/svg/SVGDocumentExtensions.h" 101 #include "core/svg/SVGDocumentExtensions.h"
101 #include "core/svg/SVGSVGElement.h" 102 #include "core/svg/SVGSVGElement.h"
102 #include "platform/Histogram.h" 103 #include "platform/Histogram.h"
103 #include "platform/HostWindow.h" 104 #include "platform/HostWindow.h"
104 #include "platform/RuntimeEnabledFeatures.h" 105 #include "platform/RuntimeEnabledFeatures.h"
105 #include "platform/ScriptForbiddenScope.h" 106 #include "platform/ScriptForbiddenScope.h"
106 #include "platform/fonts/FontCache.h" 107 #include "platform/fonts/FontCache.h"
(...skipping 4555 matching lines...) Expand 10 before | Expand all | Expand 10 after
4662 DCHECK(m_frame->isMainFrame()); 4663 DCHECK(m_frame->isMainFrame());
4663 return m_initialViewportSize.width(); 4664 return m_initialViewportSize.width();
4664 } 4665 }
4665 4666
4666 int FrameView::initialViewportHeight() const { 4667 int FrameView::initialViewportHeight() const {
4667 DCHECK(m_frame->isMainFrame()); 4668 DCHECK(m_frame->isMainFrame());
4668 return m_initialViewportSize.height(); 4669 return m_initialViewportSize.height();
4669 } 4670 }
4670 4671
4671 } // namespace blink 4672 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698