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

Unified Diff: Source/modules/accessibility/AXProgressIndicator.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/AXProgressIndicator.cpp
diff --git a/Source/modules/accessibility/AXProgressIndicator.cpp b/Source/modules/accessibility/AXProgressIndicator.cpp
index 8838eebd3a286ee6d6991577c844582dde0d78e4..ecf71803f3de7af3c7474aa7ac309bc1f8ac71b3 100644
--- a/Source/modules/accessibility/AXProgressIndicator.cpp
+++ b/Source/modules/accessibility/AXProgressIndicator.cpp
@@ -35,9 +35,9 @@ AXProgressIndicator::AXProgressIndicator(LayoutProgress* layoutObject, AXObjectC
{
}
-PassRefPtr<AXProgressIndicator> AXProgressIndicator::create(LayoutProgress* layoutObject, AXObjectCacheImpl* axObjectCache)
+PassRefPtrWillBeRawPtr<AXProgressIndicator> AXProgressIndicator::create(LayoutProgress* layoutObject, AXObjectCacheImpl* axObjectCache)
{
- return adoptRef(new AXProgressIndicator(layoutObject, axObjectCache));
+ return adoptRefWillBeNoop(new AXProgressIndicator(layoutObject, axObjectCache));
}
AccessibilityRole AXProgressIndicator::determineAccessibilityRole()

Powered by Google App Engine
This is Rietveld 408576698