| Index: third_party/WebKit/Source/core/frame/Frame.h
|
| diff --git a/third_party/WebKit/Source/core/frame/Frame.h b/third_party/WebKit/Source/core/frame/Frame.h
|
| index 6b751653e9b80974731bc17539d652d951e323a0..d65708a1bfc7cdc17be0eada2d8f361f2106bcf7 100644
|
| --- a/third_party/WebKit/Source/core/frame/Frame.h
|
| +++ b/third_party/WebKit/Source/core/frame/Frame.h
|
| @@ -63,7 +63,7 @@ enum class UserGestureStatus { Active, None };
|
| // Frame is the base class of LocalFrame and RemoteFrame and should only contain
|
| // functionality shared between both. In particular, any method related to
|
| // input, layout, or painting probably belongs on LocalFrame.
|
| -class CORE_EXPORT Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> {
|
| +class CORE_EXPORT Frame : public GarbageCollectedFinalized<Frame> {
|
| public:
|
| virtual ~Frame();
|
|
|
| @@ -138,11 +138,11 @@ protected:
|
|
|
| mutable FrameTree m_treeNode;
|
|
|
| - RawPtrWillBeMember<FrameHost> m_host;
|
| - RawPtrWillBeMember<FrameOwner> m_owner;
|
| + Member<FrameHost> m_host;
|
| + Member<FrameOwner> m_owner;
|
|
|
| private:
|
| - RawPtrWillBeMember<FrameClient> m_client;
|
| + Member<FrameClient> m_client;
|
| // Needed to identify Frame Timing requests.
|
| int64_t m_frameID;
|
| bool m_isLoading;
|
|
|