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

Unified Diff: Source/platform/Widget.h

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Switch LocalFrame::m_pluginElements rep to HashSet<HTMLPlugInElement*> Created 6 years, 2 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: Source/platform/Widget.h
diff --git a/Source/platform/Widget.h b/Source/platform/Widget.h
index 1a8a170e792cea895be6f1f5386a25d5d22a1aae..14e700ceb4d966024eb5b6c58afc1832490c3d1a 100644
--- a/Source/platform/Widget.h
+++ b/Source/platform/Widget.h
@@ -31,6 +31,7 @@
#include "platform/PlatformExport.h"
#include "platform/geometry/FloatPoint.h"
#include "platform/geometry/IntRect.h"
+#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/RefCounted.h"
@@ -45,7 +46,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 RefCounted<Widget> {
+class PLATFORM_EXPORT Widget : public RefCountedWillBeGarbageCollectedFinalized<Widget> {
public:
Widget();
virtual ~Widget();
@@ -123,12 +124,11 @@ public:
// Notifies this widget that it will no longer be receiving events.
virtual void eventListenersRemoved() { }
-#if ENABLE(OILPAN)
- virtual void detach() { }
-#endif
+ virtual void trace(Visitor*);
+ virtual void dispose() { }
private:
- Widget* m_parent;
+ RawPtrWillBeMember<Widget> m_parent;
IntRect m_frame;
bool m_selfVisible;
bool m_parentVisible;

Powered by Google App Engine
This is Rietveld 408576698