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

Unified Diff: Source/modules/accessibility/AXTableRow.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/AXTableRow.cpp
diff --git a/Source/modules/accessibility/AXTableRow.cpp b/Source/modules/accessibility/AXTableRow.cpp
index be62492da3a0785f1956fbfaa21d6248737b4d53..dc28622cefa79aff85c07c212304af451514232e 100644
--- a/Source/modules/accessibility/AXTableRow.cpp
+++ b/Source/modules/accessibility/AXTableRow.cpp
@@ -47,9 +47,9 @@ AXTableRow::~AXTableRow()
{
}
-PassRefPtr<AXTableRow> AXTableRow::create(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
+PassRefPtrWillBeRawPtr<AXTableRow> AXTableRow::create(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
{
- return adoptRef(new AXTableRow(layoutObject, axObjectCache));
+ return adoptRefWillBeNoop(new AXTableRow(layoutObject, axObjectCache));
}
AccessibilityRole AXTableRow::determineAccessibilityRole()

Powered by Google App Engine
This is Rietveld 408576698