| Index: Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerClients.cpp b/Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| index bb29874224a221a3136fcc7a288840ad80e9a0de..2493435db3f708694586f31e23dbdbad2729302e 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| @@ -30,7 +30,7 @@ public:
|
| OwnPtr<WebType> webClients = adoptPtr(webClientsRaw);
|
| HeapVector<Member<ServiceWorkerClient>> clients;
|
| for (size_t i = 0; i < webClients->clients.size(); ++i) {
|
| - WebServiceWorkerClientInfo& client = webClients->clients[i];
|
| + const WebServiceWorkerClientInfo& client = webClients->clients[i];
|
| if (client.clientType == WebServiceWorkerClientTypeWindow)
|
| clients.append(ServiceWorkerWindowClient::create(client));
|
| else
|
|
|