| Index: third_party/WebKit/Source/platform/Widget.h
|
| diff --git a/third_party/WebKit/Source/platform/Widget.h b/third_party/WebKit/Source/platform/Widget.h
|
| index d5f1b6ae34a044534e4d187025514fe10c9c9c46..e62f7809dcbd0e1bc98c74ed9f203d82b6137b04 100644
|
| --- a/third_party/WebKit/Source/platform/Widget.h
|
| +++ b/third_party/WebKit/Source/platform/Widget.h
|
| @@ -48,7 +48,7 @@ class HostWindow;
|
| // Widgets are connected in a hierarchy, with the restriction that plugins and
|
| // scrollbars are always leaves of the tree. Only FrameView can have children
|
| // (and therefore the Widget class has no concept of children).
|
| -class PLATFORM_EXPORT Widget : public RefCountedWillBeGarbageCollectedFinalized<Widget> {
|
| +class PLATFORM_EXPORT Widget : public GarbageCollectedFinalized<Widget> {
|
| public:
|
| Widget();
|
| virtual ~Widget();
|
| @@ -124,7 +124,7 @@ public:
|
| virtual void dispose() { }
|
|
|
| private:
|
| - RawPtrWillBeMember<Widget> m_parent;
|
| + Member<Widget> m_parent;
|
| IntRect m_frame;
|
| bool m_selfVisible;
|
| bool m_parentVisible;
|
|
|