Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Unified Diff: third_party/WebKit/Source/core/testing/LayerRect.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698