DescriptionOilpan: Make PersistentNode hold a raw pointer
This CL changes:
class PersistentNode { };
class PersistentBase : public PersistentNode { };
class Persistent {
T* m_raw;
};
class CrossThreadPersistent {
T* m_raw;
};
to:
class PersistentNode {
void* m_raw;
};
class PersistentBase : public PersistentNode { };
class Persistent { };
class CrossThreadPersistent { };
This is a preparation for tracing the m_raw from PersistentNode and thus
remove PersistentNode::m_trace in a follow-up CL.
BUG=483380
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=196501
Patch Set 1 #Patch Set 2 : #Patch Set 3 : #Patch Set 4 : #Patch Set 5 : #Messages
Total messages: 13 (6 generated)
|