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

Unified Diff: Source/modules/accessibility/AXTableColumn.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/AXTableColumn.cpp
diff --git a/Source/modules/accessibility/AXTableColumn.cpp b/Source/modules/accessibility/AXTableColumn.cpp
index 06fdc764a1040e46115fcf89388b63f5850f2e44..6506fe6f3445f0430dff0cba94a7d0341ddd49b0 100644
--- a/Source/modules/accessibility/AXTableColumn.cpp
+++ b/Source/modules/accessibility/AXTableColumn.cpp
@@ -47,9 +47,9 @@ AXTableColumn::~AXTableColumn()
{
}
-PassRefPtr<AXTableColumn> AXTableColumn::create(AXObjectCacheImpl* axObjectCache)
+PassRefPtrWillBeRawPtr<AXTableColumn> AXTableColumn::create(AXObjectCacheImpl* axObjectCache)
{
- return adoptRef(new AXTableColumn(axObjectCache));
+ return adoptRefWillBeNoop(new AXTableColumn(axObjectCache));
}

Powered by Google App Engine
This is Rietveld 408576698