OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "platform/graphics/paint/ForeignLayerDisplayItem.h" | 5 #include "platform/graphics/paint/ForeignLayerDisplayItem.h" |
6 | 6 |
7 #include "cc/layers/layer.h" | 7 #include "cc/layers/layer.h" |
8 #include "platform/graphics/GraphicsContext.h" | 8 #include "platform/graphics/GraphicsContext.h" |
9 #include "platform/graphics/paint/PaintController.h" | 9 #include "platform/graphics/paint/PaintController.h" |
10 #include "public/platform/WebLayer.h" | 10 #include "public/platform/WebLayer.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 void ForeignLayerDisplayItem::appendToWebDisplayItemList(const IntRect&, WebDisp
layItemList*) const | 39 void ForeignLayerDisplayItem::appendToWebDisplayItemList(const IntRect&, WebDisp
layItemList*) const |
40 { | 40 { |
41 ASSERT_NOT_REACHED(); | 41 ASSERT_NOT_REACHED(); |
42 } | 42 } |
43 | 43 |
44 bool ForeignLayerDisplayItem::drawsContent() const | 44 bool ForeignLayerDisplayItem::drawsContent() const |
45 { | 45 { |
46 return true; | 46 return true; |
47 } | 47 } |
48 | 48 |
| 49 #if ENABLE(ASSERT) |
49 bool ForeignLayerDisplayItem::equals(const DisplayItem& other) const | 50 bool ForeignLayerDisplayItem::equals(const DisplayItem& other) const |
50 { | 51 { |
51 return DisplayItem::equals(other) | 52 return DisplayItem::equals(other) |
52 && m_layer == static_cast<const ForeignLayerDisplayItem&>(other).m_layer
; | 53 && m_layer == static_cast<const ForeignLayerDisplayItem&>(other).m_layer
; |
53 } | 54 } |
| 55 #endif // ENABLE(ASSERT) |
54 | 56 |
55 #ifndef NDEBUG | 57 #ifndef NDEBUG |
56 void ForeignLayerDisplayItem::dumpPropertiesAsDebugString(StringBuilder& stringB
uilder) const | 58 void ForeignLayerDisplayItem::dumpPropertiesAsDebugString(StringBuilder& stringB
uilder) const |
57 { | 59 { |
58 DisplayItem::dumpPropertiesAsDebugString(stringBuilder); | 60 DisplayItem::dumpPropertiesAsDebugString(stringBuilder); |
59 stringBuilder.append(String::format(", layer: %d", m_layer->id())); | 61 stringBuilder.append(String::format(", layer: %d", m_layer->id())); |
60 } | 62 } |
61 #endif // NDEBUG | 63 #endif // NDEBUG |
62 | 64 |
63 void recordForeignLayer(GraphicsContext& context, | 65 void recordForeignLayer(GraphicsContext& context, |
64 const DisplayItemClient& client, DisplayItem::Type type, | 66 const DisplayItemClient& client, DisplayItem::Type type, |
65 WebLayer* webLayer, const FloatPoint& location, const IntSize& bounds) | 67 WebLayer* webLayer, const FloatPoint& location, const IntSize& bounds) |
66 { | 68 { |
67 PaintController& paintController = context.getPaintController(); | 69 PaintController& paintController = context.getPaintController(); |
68 if (paintController.displayItemConstructionIsDisabled()) | 70 if (paintController.displayItemConstructionIsDisabled()) |
69 return; | 71 return; |
70 | 72 |
71 paintController.createAndAppend<ForeignLayerDisplayItem>(client, type, webLa
yer->ccLayer(), location, bounds); | 73 paintController.createAndAppend<ForeignLayerDisplayItem>(client, type, webLa
yer->ccLayer(), location, bounds); |
72 } | 74 } |
73 | 75 |
74 } // namespace blink | 76 } // namespace blink |
OLD | NEW |