Index: Source/modules/geofencing/Geofencing.cpp |
diff --git a/Source/modules/geofencing/Geofencing.cpp b/Source/modules/geofencing/Geofencing.cpp |
index d81709bc9aa0212f2c2d8c90612ccd57c7b12bc0..4099736cf0ec52e9e49ba6ea0bf226a3be3c00a7 100644 |
--- a/Source/modules/geofencing/Geofencing.cpp |
+++ b/Source/modules/geofencing/Geofencing.cpp |
@@ -27,10 +27,10 @@ namespace { |
class RegionArray { |
public: |
typedef blink::WebVector<blink::WebGeofencingRegistration> WebType; |
- static HeapVector<Member<GeofencingRegion> > take(ScriptPromiseResolver* resolver, WebType* regionsRaw) |
+ static HeapVector<Member<GeofencingRegion>> take(ScriptPromiseResolver* resolver, WebType* regionsRaw) |
{ |
OwnPtr<WebType> webRegions = adoptPtr(regionsRaw); |
- HeapVector<Member<GeofencingRegion> > regions; |
+ HeapVector<Member<GeofencingRegion>> regions; |
for (size_t i = 0; i < webRegions->size(); ++i) |
regions.append(CircularGeofencingRegion::create((*webRegions)[i].id, (*webRegions)[i].region)); |
return regions; |