OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "core/layout/compositing/CompositingInputsUpdater.h" | 5 #include "core/layout/compositing/CompositingInputsUpdater.h" |
6 | 6 |
7 #include "core/dom/Document.h" | 7 #include "core/dom/Document.h" |
8 #include "core/frame/FrameHost.h" | |
9 #include "core/frame/FrameView.h" | 8 #include "core/frame/FrameView.h" |
10 #include "core/layout/LayoutBlock.h" | 9 #include "core/layout/LayoutBlock.h" |
11 #include "core/layout/LayoutView.h" | 10 #include "core/layout/LayoutView.h" |
12 #include "core/layout/compositing/CompositedLayerMapping.h" | 11 #include "core/layout/compositing/CompositedLayerMapping.h" |
13 #include "core/layout/compositing/PaintLayerCompositor.h" | 12 #include "core/layout/compositing/PaintLayerCompositor.h" |
14 #include "core/paint/PaintLayer.h" | 13 #include "core/paint/PaintLayer.h" |
15 #include "platform/instrumentation/tracing/TraceEvent.h" | 14 #include "platform/instrumentation/tracing/TraceEvent.h" |
16 | 15 |
17 namespace blink { | 16 namespace blink { |
18 | 17 |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 ASSERT(!layer->needsCompositingInputsUpdate()); | 273 ASSERT(!layer->needsCompositingInputsUpdate()); |
275 | 274 |
276 for (PaintLayer* child = layer->firstChild(); child; | 275 for (PaintLayer* child = layer->firstChild(); child; |
277 child = child->nextSibling()) | 276 child = child->nextSibling()) |
278 assertNeedsCompositingInputsUpdateBitsCleared(child); | 277 assertNeedsCompositingInputsUpdateBitsCleared(child); |
279 } | 278 } |
280 | 279 |
281 #endif | 280 #endif |
282 | 281 |
283 } // namespace blink | 282 } // namespace blink |
OLD | NEW |