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

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, 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/AXTableColumn.h ('k') | Source/modules/accessibility/AXTableHeaderContainer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXTableColumn.cpp
diff --git a/Source/modules/accessibility/AXTableColumn.cpp b/Source/modules/accessibility/AXTableColumn.cpp
index b85c7fe4f6eb78c15628a5906a90d50e8ef9f8ef..9cb6e0a9e097a7b2b9e52a3d3745bc103bfd8e14 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));
}
« no previous file with comments | « Source/modules/accessibility/AXTableColumn.h ('k') | Source/modules/accessibility/AXTableHeaderContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698