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

Unified Diff: Source/core/events/GenericEventQueue.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/EventTarget.cpp ('k') | Source/core/events/GenericEventQueue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/GenericEventQueue.h
diff --git a/Source/core/events/GenericEventQueue.h b/Source/core/events/GenericEventQueue.h
index 4ed256aabe350c0b74c0d589f1402dc7c23a5fa5..b8d0c7e00f76d74f2a53d7b293c706ff79064c40 100644
--- a/Source/core/events/GenericEventQueue.h
+++ b/Source/core/events/GenericEventQueue.h
@@ -55,7 +55,7 @@ private:
void timerFired(Timer<GenericEventQueue>*);
RawPtrWillBeMember<EventTarget> m_owner;
- WillBeHeapVector<RefPtrWillBeMember<Event> > m_pendingEvents;
+ WillBeHeapVector<RefPtrWillBeMember<Event>> m_pendingEvents;
Timer<GenericEventQueue> m_timer;
bool m_isClosed;
« no previous file with comments | « Source/core/events/EventTarget.cpp ('k') | Source/core/events/GenericEventQueue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698