| Index: third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.h
|
| diff --git a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.h b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.h
|
| index e52725ed443ed924cf168d1a99fd14afabfb322e..cb30771dee074aa37387d5cbc7cfb1c449700cf4 100644
|
| --- a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.h
|
| +++ b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.h
|
| @@ -13,7 +13,7 @@
|
| namespace blink {
|
|
|
| class BackgroundFetchOptions;
|
| -class RequestOrUSVString;
|
| +class RequestOrUSVStringOrRequestOrUSVStringSequence;
|
| class ScriptState;
|
| class ServiceWorkerRegistration;
|
|
|
| @@ -31,10 +31,11 @@ class BackgroundFetchManager final
|
| }
|
|
|
| // Web Exposed methods defined in the IDL file.
|
| - ScriptPromise fetch(ScriptState*,
|
| - String tag,
|
| - HeapVector<RequestOrUSVString> requests,
|
| - const BackgroundFetchOptions&);
|
| + ScriptPromise fetch(
|
| + ScriptState*,
|
| + String tag,
|
| + const RequestOrUSVStringOrRequestOrUSVStringSequence& requests,
|
| + const BackgroundFetchOptions&);
|
| ScriptPromise get(ScriptState*, String tag);
|
| ScriptPromise getTags(ScriptState*);
|
|
|
|
|