Index: Source/modules/serviceworkers/ServiceWorkerClients.cpp |
diff --git a/Source/modules/serviceworkers/ServiceWorkerClients.cpp b/Source/modules/serviceworkers/ServiceWorkerClients.cpp |
index 6e5ed30b07f19a82d15b58b073abde469a56bf41..364f5a5cb00e21a2f1811cc08025e3e44d0dddca 100644 |
--- a/Source/modules/serviceworkers/ServiceWorkerClients.cpp |
+++ b/Source/modules/serviceworkers/ServiceWorkerClients.cpp |
@@ -22,10 +22,10 @@ namespace { |
class ClientArray { |
public: |
typedef blink::WebServiceWorkerClientsInfo WebType; |
- static HeapVector<Member<ServiceWorkerClient> > take(ScriptPromiseResolver*, WebType* webClientsRaw) |
+ static HeapVector<Member<ServiceWorkerClient>> take(ScriptPromiseResolver*, WebType* webClientsRaw) |
{ |
OwnPtr<WebType> webClients = adoptPtr(webClientsRaw); |
- HeapVector<Member<ServiceWorkerClient> > clients; |
+ HeapVector<Member<ServiceWorkerClient>> clients; |
for (size_t i = 0; i < webClients->clients.size(); ++i) { |
clients.append(ServiceWorkerWindowClient::create(webClients->clients[i])); |
} |