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

Unified Diff: Source/core/events/ScopedEventQueue.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/GenericEventQueue.cpp ('k') | Source/core/events/ScopedEventQueue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ScopedEventQueue.h
diff --git a/Source/core/events/ScopedEventQueue.h b/Source/core/events/ScopedEventQueue.h
index 7347d4a371d8434c0941c87baf8d6ff6dc9c2b75..eaffa4165dd50f9d138be7507ccf86cd66d490c2 100644
--- a/Source/core/events/ScopedEventQueue.h
+++ b/Source/core/events/ScopedEventQueue.h
@@ -58,7 +58,7 @@ private:
static void initialize();
void dispatchEvent(PassRefPtrWillBeRawPtr<EventDispatchMediator>) const;
- WillBePersistentHeapVector<RefPtrWillBeMember<EventDispatchMediator> > m_queuedEventDispatchMediators;
+ WillBePersistentHeapVector<RefPtrWillBeMember<EventDispatchMediator>> m_queuedEventDispatchMediators;
unsigned m_scopingLevel;
static ScopedEventQueue* s_instance;
« no previous file with comments | « Source/core/events/GenericEventQueue.cpp ('k') | Source/core/events/ScopedEventQueue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698