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

Unified Diff: Source/modules/geolocation/GeolocationWatchers.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/GeolocationWatchers.h
diff --git a/Source/modules/geolocation/GeolocationWatchers.h b/Source/modules/geolocation/GeolocationWatchers.h
index ab6519574ed5e29faba0eb4d7917ee116a87d63f..6f94d9665eb1efdb573bc20ff6a52764ae5b10d4 100644
--- a/Source/modules/geolocation/GeolocationWatchers.h
+++ b/Source/modules/geolocation/GeolocationWatchers.h
@@ -26,10 +26,10 @@ public:
void clear();
bool isEmpty() const;
- void getNotifiersVector(HeapVector<Member<GeoNotifier> >&) const;
+ void getNotifiersVector(HeapVector<Member<GeoNotifier>>&) const;
private:
- typedef HeapHashMap<int, Member<GeoNotifier> > IdToNotifierMap;
+ typedef HeapHashMap<int, Member<GeoNotifier>> IdToNotifierMap;
typedef HeapHashMap<Member<GeoNotifier>, int> NotifierToIdMap;
IdToNotifierMap m_idToNotifierMap;

Powered by Google App Engine
This is Rietveld 408576698