OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2014 Google Inc. All rights reserved. | 3 * Copyright (C) 2014 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
11 * notice, this list of conditions and the following disclaimer in the | 11 * notice, this list of conditions and the following disclaimer in the |
12 * documentation and/or other materials provided with the distribution. | 12 * documentation and/or other materials provided with the distribution. |
13 * | 13 * |
14 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY | 14 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY |
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
25 */ | 25 */ |
26 | 26 |
27 #include "config.h" | 27 #include "config.h" |
28 #include "core/rendering/compositing/GraphicsLayerUpdater.h" | 28 #include "core/rendering/compositing/GraphicsLayerUpdater.h" |
29 | 29 |
30 #include "core/html/HTMLMediaElement.h" | |
30 #include "core/rendering/RenderLayer.h" | 31 #include "core/rendering/RenderLayer.h" |
31 #include "core/rendering/RenderLayerReflectionInfo.h" | 32 #include "core/rendering/RenderLayerReflectionInfo.h" |
32 #include "core/rendering/RenderPart.h" | 33 #include "core/rendering/RenderPart.h" |
33 #include "core/rendering/RenderView.h" | 34 #include "core/rendering/RenderView.h" |
34 #include "core/rendering/compositing/CompositedLayerMapping.h" | 35 #include "core/rendering/compositing/CompositedLayerMapping.h" |
35 #include "core/rendering/compositing/RenderLayerCompositor.h" | 36 #include "core/rendering/compositing/RenderLayerCompositor.h" |
36 #include "public/platform/Platform.h" | 37 #include "public/platform/Platform.h" |
37 | 38 |
38 namespace WebCore { | 39 namespace WebCore { |
39 | 40 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
116 currentCompositedLayerMapping->parentForSublayers()->addChild(ov erflowControlLayer); | 117 currentCompositedLayerMapping->parentForSublayers()->addChild(ov erflowControlLayer); |
117 } | 118 } |
118 | 119 |
119 if (GraphicsLayer* overflowControlLayer = currentCompositedLayerMapp ing->layerForScrollCorner()) { | 120 if (GraphicsLayer* overflowControlLayer = currentCompositedLayerMapp ing->layerForScrollCorner()) { |
120 overflowControlLayer->removeFromParent(); | 121 overflowControlLayer->removeFromParent(); |
121 currentCompositedLayerMapping->parentForSublayers()->addChild(ov erflowControlLayer); | 122 currentCompositedLayerMapping->parentForSublayers()->addChild(ov erflowControlLayer); |
122 } | 123 } |
123 } | 124 } |
124 | 125 |
125 childLayersOfEnclosingLayer.append(currentCompositedLayerMapping->childF orSuperlayers()); | 126 childLayersOfEnclosingLayer.append(currentCompositedLayerMapping->childF orSuperlayers()); |
127 bool appendLayer = true; | |
128 if (RuntimeEnabledFeatures::overlayFullscreenVideoEnabled()) { | |
129 Node* node = layer.renderer()->node(); | |
130 if (isHTMLMediaElement(*node) && toHTMLMediaElement(node)->isFullscr een()) { | |
131 appendLayer = false; | |
132 } | |
133 } | |
134 if (appendLayer) { | |
esprehn
2014/03/05 00:22:41
This should be refactored into a function.
if (sh
qinmin
2014/03/05 01:34:42
Done.
| |
135 childLayersOfEnclosingLayer.append(currentCompositedLayerMapping->ch ildForSuperlayers()); | |
136 } | |
126 } | 137 } |
127 | 138 |
128 if (!depth) { | 139 if (!depth) { |
129 int percentageIncreaseInPixels = static_cast<int>(m_pixelsAddedByPromoti ngAllTransitions / m_pixelsWithoutPromotingAllTransitions * 100); | 140 int percentageIncreaseInPixels = static_cast<int>(m_pixelsAddedByPromoti ngAllTransitions / m_pixelsWithoutPromotingAllTransitions * 100); |
130 blink::Platform::current()->histogramCustomCounts("Renderer.PixelIncreas eFromTransitions", percentageIncreaseInPixels, 0, 1000, 50); | 141 blink::Platform::current()->histogramCustomCounts("Renderer.PixelIncreas eFromTransitions", percentageIncreaseInPixels, 0, 1000, 50); |
131 } | 142 } |
132 } | 143 } |
133 | 144 |
134 // This just updates layer geometry without changing the hierarchy. | 145 // This just updates layer geometry without changing the hierarchy. |
135 void GraphicsLayerUpdater::updateRecursive(RenderLayer& layer) | 146 void GraphicsLayerUpdater::updateRecursive(RenderLayer& layer) |
(...skipping 29 matching lines...) Expand all Loading... | |
165 mapping->updateGraphicsLayerGeometry(); | 176 mapping->updateGraphicsLayerGeometry(); |
166 | 177 |
167 if (!layer.parent()) | 178 if (!layer.parent()) |
168 layer.compositor()->updateRootLayerPosition(); | 179 layer.compositor()->updateRootLayerPosition(); |
169 | 180 |
170 if (mapping->hasUnpositionedOverflowControlsLayers()) | 181 if (mapping->hasUnpositionedOverflowControlsLayers()) |
171 layer.scrollableArea()->positionOverflowControls(); | 182 layer.scrollableArea()->positionOverflowControls(); |
172 } | 183 } |
173 | 184 |
174 } // namespace WebCore | 185 } // namespace WebCore |
OLD | NEW |