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

Unified Diff: Source/modules/accessibility/AXARIAGridCell.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/AXARIAGridCell.cpp
diff --git a/Source/modules/accessibility/AXARIAGridCell.cpp b/Source/modules/accessibility/AXARIAGridCell.cpp
index 905f13da8b9caa4d749f68d8afd311e8d6a66a04..e629e1f9755f8c82af930c989ba7cea474f9f517 100644
--- a/Source/modules/accessibility/AXARIAGridCell.cpp
+++ b/Source/modules/accessibility/AXARIAGridCell.cpp
@@ -45,9 +45,9 @@ AXARIAGridCell::~AXARIAGridCell()
{
}
-PassRefPtr<AXARIAGridCell> AXARIAGridCell::create(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
+PassRefPtrWillBeRawPtr<AXARIAGridCell> AXARIAGridCell::create(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
{
- return adoptRef(new AXARIAGridCell(layoutObject, axObjectCache));
+ return adoptRefWillBeNoop(new AXARIAGridCell(layoutObject, axObjectCache));
}
bool AXARIAGridCell::isAriaColumnHeader() const

Powered by Google App Engine
This is Rietveld 408576698