| Index: Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerClients.cpp b/Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| index e36e034d9d4cdaccbe6b6380a3431a79fc268248..35aaabbecf8e3c6177a317bc460d17bb7ce0c92a 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
| @@ -52,8 +52,14 @@ ServiceWorkerClients::ServiceWorkerClients()
|
| {
|
| }
|
|
|
| +// Deprecated, please use matchAll instead
|
| ScriptPromise ServiceWorkerClients::getAll(ScriptState* scriptState, const ClientQueryOptions& options)
|
| {
|
| + return matchAll(scriptState, options);
|
| +}
|
| +
|
| +ScriptPromise ServiceWorkerClients::matchAll(ScriptState* scriptState, const ClientQueryOptions& options)
|
| +{
|
| ExecutionContext* executionContext = scriptState->executionContext();
|
| // FIXME: May be null due to worker termination: http://crbug.com/413518.
|
| if (!executionContext)
|
|
|