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

Unified Diff: Source/modules/geofencing/Geofencing.cpp

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/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;

Powered by Google App Engine
This is Rietveld 408576698