| 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()
|
|
|