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

Unified Diff: Source/core/accessibility/AXScrollbar.h

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add ~Scrollbar assert Created 6 years, 3 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/core/accessibility/AXScrollbar.h
diff --git a/Source/core/accessibility/AXScrollbar.h b/Source/core/accessibility/AXScrollbar.h
index 1c65101547ca13083b88cd92cdded647d1698897..df1448ca66f5f968572e263678ac1b01cc69a7fa 100644
--- a/Source/core/accessibility/AXScrollbar.h
+++ b/Source/core/accessibility/AXScrollbar.h
@@ -61,7 +61,7 @@ private:
virtual void setValue(float) OVERRIDE;
virtual float valueForRange() const OVERRIDE;
- RefPtr<Scrollbar> m_scrollbar;
+ RefPtrWillBePersistent<Scrollbar> m_scrollbar;
haraken 2014/09/29 14:16:35 Hmm, it seems that the fact that AXScrollbar can h
sof 2014/10/08 11:52:25 My reasoning was simply that Scrollbar is a leaf o
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXScrollbar, isAXScrollbar());

Powered by Google App Engine
This is Rietveld 408576698