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

Unified Diff: Source/modules/accessibility/AXObjectCacheImpl.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/AXObjectCacheImpl.cpp
diff --git a/Source/modules/accessibility/AXObjectCacheImpl.cpp b/Source/modules/accessibility/AXObjectCacheImpl.cpp
index 5abafb35ee99d89ab4dc117674a814523716031f..23ce8348a057f78ee79e3deb055397c3f0e5f7ae 100644
--- a/Source/modules/accessibility/AXObjectCacheImpl.cpp
+++ b/Source/modules/accessibility/AXObjectCacheImpl.cpp
@@ -99,8 +99,8 @@ AXObjectCacheImpl::~AXObjectCacheImpl()
{
m_notificationPostTimer.stop();
- HashMap<AXID, RefPtr<AXObject> >::iterator end = m_objects.end();
- for (HashMap<AXID, RefPtr<AXObject> >::iterator it = m_objects.begin(); it != end; ++it) {
+ HashMap<AXID, RefPtr<AXObject>>::iterator end = m_objects.end();
+ for (HashMap<AXID, RefPtr<AXObject>>::iterator it = m_objects.begin(); it != end; ++it) {
AXObject* obj = (*it).value.get();
obj->detach();
removeAXID(obj);

Powered by Google App Engine
This is Rietveld 408576698