Index: third_party/WebKit/Source/core/testing/LayerRect.h |
diff --git a/third_party/WebKit/Source/core/testing/LayerRect.h b/third_party/WebKit/Source/core/testing/LayerRect.h |
index 7930471d4dcbbb00d8416b4b7107bb77cdc4bd6d..d8f4084d59453bcdeddd7c6141c04e254eec6033 100644 |
--- a/third_party/WebKit/Source/core/testing/LayerRect.h |
+++ b/third_party/WebKit/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, ClientRect* rect) |
+ static LayerRect* create(RawPtr<Node> node, const String& layerType, int nodeOffsetX, int nodeOffsetY, ClientRect* rect) |
{ |
return new LayerRect(node, layerType, nodeOffsetX, nodeOffsetY, rect); |
} |
@@ -64,14 +64,14 @@ public: |
} |
private: |
- LayerRect(PassRefPtrWillBeRawPtr<Node> node, const String& layerName, int nodeOffsetX, int nodeOffsetY, ClientRect* rect) |
+ LayerRect(RawPtr<Node> node, const String& layerName, int nodeOffsetX, int nodeOffsetY, ClientRect* rect) |
: m_layerAssociatedNode(node) |
, m_layerType(layerName) |
, m_associatedNodeOffsetX(nodeOffsetX) |
, m_associatedNodeOffsetY(nodeOffsetY) |
, m_rect(rect) { } |
- RefPtrWillBeMember<Node> m_layerAssociatedNode; |
+ Member<Node> m_layerAssociatedNode; |
String m_layerType; |
int m_associatedNodeOffsetX; |
int m_associatedNodeOffsetY; |