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

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

Issue 864533002: Fix template angle bracket syntax in modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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/AXRenderObject.cpp
diff --git a/Source/modules/accessibility/AXRenderObject.cpp b/Source/modules/accessibility/AXRenderObject.cpp
index ef2d3115f0fdc0301cc4451e4640e7b422fe267c..a7c75232694e36186a0b8961e8e66d5df2346858 100644
--- a/Source/modules/accessibility/AXRenderObject.cpp
+++ b/Source/modules/accessibility/AXRenderObject.cpp
@@ -913,7 +913,7 @@ String AXRenderObject::stringValue() const
// This has to be overridden in the case where the selected item has an ARIA label.
HTMLSelectElement* selectElement = toHTMLSelectElement(m_renderer->node());
int selectedIndex = selectElement->selectedIndex();
- const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& listItems = selectElement->listItems();
+ const WillBeHeapVector<RawPtrWillBeMember<HTMLElement>>& listItems = selectElement->listItems();
if (selectedIndex >= 0 && static_cast<size_t>(selectedIndex) < listItems.size()) {
const AtomicString& overriddenDescription = listItems[selectedIndex]->fastGetAttribute(aria_labelAttr);
if (!overriddenDescription.isNull())
@@ -990,7 +990,7 @@ AXObject* AXRenderObject::activeDescendant() const
void AXRenderObject::accessibilityChildrenFromAttribute(QualifiedName attr, AccessibilityChildrenVector& children) const
{
- WillBeHeapVector<RawPtrWillBeMember<Element> > elements;
+ WillBeHeapVector<RawPtrWillBeMember<Element>> elements;
elementsFromAttribute(elements, attr);
AXObjectCacheImpl* cache = axObjectCache();
@@ -1972,7 +1972,7 @@ bool AXRenderObject::isTabItemSelected() const
if (!focusedElement)
return false;
- WillBeHeapVector<RawPtrWillBeMember<Element> > elements;
+ WillBeHeapVector<RawPtrWillBeMember<Element>> elements;
elementsFromAttribute(elements, aria_controlsAttr);
unsigned count = elements.size();

Powered by Google App Engine
This is Rietveld 408576698