Index: Source/modules/geolocation/GeolocationController.cpp |
diff --git a/Source/modules/geolocation/GeolocationController.cpp b/Source/modules/geolocation/GeolocationController.cpp |
index 29ed1dc8c96e9e59e0e9de57b127d2c54f420e06..aee3f8a88ce02e37304d19ed4a42439921434c84 100644 |
--- a/Source/modules/geolocation/GeolocationController.cpp |
+++ b/Source/modules/geolocation/GeolocationController.cpp |
@@ -133,7 +133,7 @@ void GeolocationController::positionChanged(GeolocationPosition* position) |
return; |
} |
m_lastPosition = position; |
- HeapVector<Member<Geolocation> > observersVector; |
+ HeapVector<Member<Geolocation>> observersVector; |
copyToVector(m_observers, observersVector); |
for (size_t i = 0; i < observersVector.size(); ++i) |
observersVector[i]->positionChanged(); |
@@ -141,7 +141,7 @@ void GeolocationController::positionChanged(GeolocationPosition* position) |
void GeolocationController::errorOccurred(GeolocationError* error) |
{ |
- HeapVector<Member<Geolocation> > observersVector; |
+ HeapVector<Member<Geolocation>> observersVector; |
copyToVector(m_observers, observersVector); |
for (size_t i = 0; i < observersVector.size(); ++i) |
observersVector[i]->setError(error); |