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 4224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4323 } | 4324 } |
4324 | 4325 |
4325 bool FrameView::canThrottleRendering() const | 4326 bool FrameView::canThrottleRendering() const |
4326 { | 4327 { |
4327 if (!RuntimeEnabledFeatures::renderingPipelineThrottlingEnabled()) | 4328 if (!RuntimeEnabledFeatures::renderingPipelineThrottlingEnabled()) |
4328 return false; | 4329 return false; |
4329 return m_subtreeThrottled || (m_hiddenForThrottling && m_crossOriginForThrot
tling); | 4330 return m_subtreeThrottled || (m_hiddenForThrottling && m_crossOriginForThrot
tling); |
4330 } | 4331 } |
4331 | 4332 |
4332 } // namespace blink | 4333 } // namespace blink |
OLD | NEW |