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

Unified Diff: Source/core/events/EventSender.h

Issue 637223008: Use C++11 range-based loop in core/events (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « Source/core/events/EventPath.cpp ('k') | Source/core/events/EventTarget.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/EventSender.h
diff --git a/Source/core/events/EventSender.h b/Source/core/events/EventSender.h
index 683a9bc65b415dc47946bd120523727fec37af5e..5d06fddb6994ab6950414de8142aa2cd09760c9e 100644
--- a/Source/core/events/EventSender.h
+++ b/Source/core/events/EventSender.h
@@ -50,12 +50,12 @@ public:
#endif
private:
- void timerFired(Timer<EventSender<T> >*) { dispatchPendingEvents(); }
+ void timerFired(Timer<EventSender<T>>*) { dispatchPendingEvents(); }
AtomicString m_eventType;
- Timer<EventSender<T> > m_timer;
- WillBePersistentHeapVector<RawPtrWillBeMember<T> > m_dispatchSoonList;
- WillBePersistentHeapVector<RawPtrWillBeMember<T> > m_dispatchingList;
+ Timer<EventSender<T>> m_timer;
+ WillBePersistentHeapVector<RawPtrWillBeMember<T>> m_dispatchSoonList;
+ WillBePersistentHeapVector<RawPtrWillBeMember<T>> m_dispatchingList;
};
template<typename T> EventSender<T>::EventSender(const AtomicString& eventType)
« no previous file with comments | « Source/core/events/EventPath.cpp ('k') | Source/core/events/EventTarget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698