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

Unified Diff: Source/modules/accessibility/AXList.cpp

Issue 1072273006: Oilpan: Prepare moving AXObject to heap (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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/modules/accessibility/AXList.cpp
diff --git a/Source/modules/accessibility/AXList.cpp b/Source/modules/accessibility/AXList.cpp
index 06c759e7400cbc87e96e3e5b7d110b8a8e671b4c..03f7912ae59bc4ee5ae3c3e4599b5279b41c784d 100644
--- a/Source/modules/accessibility/AXList.cpp
+++ b/Source/modules/accessibility/AXList.cpp
@@ -46,9 +46,9 @@ AXList::~AXList()
{
}
-PassRefPtr<AXList> AXList::create(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
+PassRefPtrWillBeRawPtr<AXList> AXList::create(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
{
- return adoptRef(new AXList(layoutObject, axObjectCache));
+ return adoptRefWillBeNoop(new AXList(layoutObject, axObjectCache));
}
bool AXList::computeAccessibilityIsIgnored(IgnoredReasons* ignoredReasons) const

Powered by Google App Engine
This is Rietveld 408576698