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

Unified Diff: Source/core/events/TreeScopeEventContext.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/ScopedEventQueue.cpp ('k') | Source/core/events/TreeScopeEventContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/TreeScopeEventContext.h
diff --git a/Source/core/events/TreeScopeEventContext.h b/Source/core/events/TreeScopeEventContext.h
index 9c23cfeeaeefb80ffab06c35eedc6a06e86da10d..3b040eb259d910d245a0aba84cb4333b21cf2f78 100644
--- a/Source/core/events/TreeScopeEventContext.h
+++ b/Source/core/events/TreeScopeEventContext.h
@@ -83,7 +83,7 @@ private:
RefPtrWillBeMember<StaticNodeList> m_eventPath;
RefPtrWillBeMember<TouchEventContext> m_touchEventContext;
- WillBeHeapVector<RawPtrWillBeMember<TreeScopeEventContext> > m_children;
+ WillBeHeapVector<RawPtrWillBeMember<TreeScopeEventContext>> m_children;
int m_preOrder;
int m_postOrder;
};
« no previous file with comments | « Source/core/events/ScopedEventQueue.cpp ('k') | Source/core/events/TreeScopeEventContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698