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 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 #include "core/observer/ResizeObserverController.h" | 79 #include "core/observer/ResizeObserverController.h" |
80 #include "core/page/AutoscrollController.h" | 80 #include "core/page/AutoscrollController.h" |
81 #include "core/page/ChromeClient.h" | 81 #include "core/page/ChromeClient.h" |
82 #include "core/page/FocusController.h" | 82 #include "core/page/FocusController.h" |
83 #include "core/page/FrameTree.h" | 83 #include "core/page/FrameTree.h" |
84 #include "core/page/Page.h" | 84 #include "core/page/Page.h" |
85 #include "core/page/scrolling/RootScrollerController.h" | 85 #include "core/page/scrolling/RootScrollerController.h" |
86 #include "core/page/scrolling/ScrollingCoordinator.h" | 86 #include "core/page/scrolling/ScrollingCoordinator.h" |
87 #include "core/paint/FramePainter.h" | 87 #include "core/paint/FramePainter.h" |
88 #include "core/paint/PaintLayer.h" | 88 #include "core/paint/PaintLayer.h" |
| 89 #include "core/paint/PaintPropertyTreePrinter.h" |
89 #include "core/paint/PrePaintTreeWalk.h" | 90 #include "core/paint/PrePaintTreeWalk.h" |
90 #include "core/plugins/PluginView.h" | 91 #include "core/plugins/PluginView.h" |
91 #include "core/style/ComputedStyle.h" | 92 #include "core/style/ComputedStyle.h" |
92 #include "core/svg/SVGDocumentExtensions.h" | 93 #include "core/svg/SVGDocumentExtensions.h" |
93 #include "core/svg/SVGSVGElement.h" | 94 #include "core/svg/SVGSVGElement.h" |
94 #include "platform/Histogram.h" | 95 #include "platform/Histogram.h" |
95 #include "platform/HostWindow.h" | 96 #include "platform/HostWindow.h" |
96 #include "platform/RuntimeEnabledFeatures.h" | 97 #include "platform/RuntimeEnabledFeatures.h" |
97 #include "platform/ScriptForbiddenScope.h" | 98 #include "platform/ScriptForbiddenScope.h" |
98 #include "platform/TraceEvent.h" | 99 #include "platform/TraceEvent.h" |
(...skipping 4229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4328 } | 4329 } |
4329 | 4330 |
4330 bool FrameView::canThrottleRendering() const | 4331 bool FrameView::canThrottleRendering() const |
4331 { | 4332 { |
4332 if (!RuntimeEnabledFeatures::renderingPipelineThrottlingEnabled()) | 4333 if (!RuntimeEnabledFeatures::renderingPipelineThrottlingEnabled()) |
4333 return false; | 4334 return false; |
4334 return m_subtreeThrottled || (m_hiddenForThrottling && m_crossOriginForThrot
tling); | 4335 return m_subtreeThrottled || (m_hiddenForThrottling && m_crossOriginForThrot
tling); |
4335 } | 4336 } |
4336 | 4337 |
4337 } // namespace blink | 4338 } // namespace blink |
OLD | NEW |