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

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, 6 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
« no previous file with comments | « Source/modules/accessibility/AXList.h ('k') | Source/modules/accessibility/AXListBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXList.cpp
diff --git a/Source/modules/accessibility/AXList.cpp b/Source/modules/accessibility/AXList.cpp
index ffb8546ea782643b24b1760517281a652666ce81..716655d5282b3f9171b3e64eda2263da9c9332b4 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
« no previous file with comments | « Source/modules/accessibility/AXList.h ('k') | Source/modules/accessibility/AXListBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698