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

Unified Diff: Source/modules/accessibility/AXObjectCacheImpl.h

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/AXObjectCacheImpl.h
diff --git a/Source/modules/accessibility/AXObjectCacheImpl.h b/Source/modules/accessibility/AXObjectCacheImpl.h
index 494b54c5a38d60f08cb51b70a48e57cd5525b46a..c21fce606fbf0ab468b14df20b65b1e31b893e69 100644
--- a/Source/modules/accessibility/AXObjectCacheImpl.h
+++ b/Source/modules/accessibility/AXObjectCacheImpl.h
@@ -171,7 +171,7 @@ protected:
private:
Document& m_document;
- HashMap<AXID, RefPtr<AXObject> > m_objects;
+ HashMap<AXID, RefPtr<AXObject>> m_objects;
HashMap<RenderObject*, AXID> m_renderObjectMapping;
HashMap<Widget*, AXID> m_widgetObjectMapping;
HashMap<Node*, AXID> m_nodeObjectMapping;
@@ -182,7 +182,7 @@ private:
HashSet<AXID> m_idsInUse;
Timer<AXObjectCacheImpl> m_notificationPostTimer;
- Vector<pair<RefPtr<AXObject>, AXNotification> > m_notificationsToPost;
+ Vector<pair<RefPtr<AXObject>, AXNotification>> m_notificationsToPost;
void notificationPostTimerFired(Timer<AXObjectCacheImpl>*);
AXObject* focusedImageMapUIElement(HTMLAreaElement*);

Powered by Google App Engine
This is Rietveld 408576698