Index: Source/core/testing/LayerRect.h |
diff --git a/Source/core/testing/LayerRect.h b/Source/core/testing/LayerRect.h |
index 505e21daae5f36363ac6495e64ca4cf7572cc13d..7930471d4dcbbb00d8416b4b7107bb77cdc4bd6d 100644 |
--- a/Source/core/testing/LayerRect.h |
+++ b/Source/core/testing/LayerRect.h |
@@ -46,7 +46,7 @@ class Node; |
class LayerRect final : public GarbageCollectedFinalized<LayerRect>, public ScriptWrappable { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
- static LayerRect* create(PassRefPtrWillBeRawPtr<Node> node, const String& layerType, int nodeOffsetX, int nodeOffsetY, PassRefPtrWillBeRawPtr<ClientRect> rect) |
+ static LayerRect* create(PassRefPtrWillBeRawPtr<Node> node, const String& layerType, int nodeOffsetX, int nodeOffsetY, ClientRect* rect) |
{ |
return new LayerRect(node, layerType, nodeOffsetX, nodeOffsetY, rect); |
} |
@@ -64,7 +64,7 @@ public: |
} |
private: |
- LayerRect(PassRefPtrWillBeRawPtr<Node> node, const String& layerName, int nodeOffsetX, int nodeOffsetY, PassRefPtrWillBeRawPtr<ClientRect> rect) |
+ LayerRect(PassRefPtrWillBeRawPtr<Node> node, const String& layerName, int nodeOffsetX, int nodeOffsetY, ClientRect* rect) |
: m_layerAssociatedNode(node) |
, m_layerType(layerName) |
, m_associatedNodeOffsetX(nodeOffsetX) |
@@ -75,7 +75,7 @@ private: |
String m_layerType; |
int m_associatedNodeOffsetX; |
int m_associatedNodeOffsetY; |
- RefPtrWillBeMember<ClientRect> m_rect; |
+ Member<ClientRect> m_rect; |
}; |
} // namespace blink |