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

Unified Diff: Source/modules/accessibility/AXARIAGridRow.cpp

Issue 1175533004: Refactor: Clear m_axObjectCache when AXObject detaches (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added ASSERT 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/AXARIAGridRow.h ('k') | Source/modules/accessibility/AXImageMapLink.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXARIAGridRow.cpp
diff --git a/Source/modules/accessibility/AXARIAGridRow.cpp b/Source/modules/accessibility/AXARIAGridRow.cpp
index e27e0bcd88ce59add20a231873ee0b5076650f27..82df84dc7ba5176ae0c5a59078b2d43e00350d6e 100644
--- a/Source/modules/accessibility/AXARIAGridRow.cpp
+++ b/Source/modules/accessibility/AXARIAGridRow.cpp
@@ -35,7 +35,7 @@
namespace blink {
-AXARIAGridRow::AXARIAGridRow(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
+AXARIAGridRow::AXARIAGridRow(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
: AXTableRow(layoutObject, axObjectCache)
{
}
@@ -44,7 +44,7 @@ AXARIAGridRow::~AXARIAGridRow()
{
}
-PassRefPtr<AXARIAGridRow> AXARIAGridRow::create(LayoutObject* layoutObject, AXObjectCacheImpl* axObjectCache)
+PassRefPtr<AXARIAGridRow> AXARIAGridRow::create(LayoutObject* layoutObject, AXObjectCacheImpl& axObjectCache)
{
return adoptRef(new AXARIAGridRow(layoutObject, axObjectCache));
}
« no previous file with comments | « Source/modules/accessibility/AXARIAGridRow.h ('k') | Source/modules/accessibility/AXImageMapLink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698