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

Unified Diff: Source/modules/geolocation/Geolocation.h

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/geolocation/Geolocation.h
diff --git a/Source/modules/geolocation/Geolocation.h b/Source/modules/geolocation/Geolocation.h
index 3d70e847d372b212e9a33937a24f3d966c5e0579..c638bd3bb79cda3a2919c13d1fef90068a7a9a61 100644
--- a/Source/modules/geolocation/Geolocation.h
+++ b/Source/modules/geolocation/Geolocation.h
@@ -102,8 +102,8 @@ private:
explicit Geolocation(ExecutionContext*);
- typedef HeapVector<Member<GeoNotifier> > GeoNotifierVector;
- typedef HeapHashSet<Member<GeoNotifier> > GeoNotifierSet;
+ typedef HeapVector<Member<GeoNotifier>> GeoNotifierVector;
+ typedef HeapHashSet<Member<GeoNotifier>> GeoNotifierSet;
bool hasListeners() const { return !m_oneShots.isEmpty() || !m_watchers.isEmpty(); }

Powered by Google App Engine
This is Rietveld 408576698