Chromium Code Reviews

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: Fix popup unit tests Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXScrollbar, isAXScrollbar());

Powered by Google App Engine