| Index: third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.cpp
|
| diff --git a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.cpp b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.cpp
|
| index 14dd263545c467000a55c8d8c40096d62a920084..3da171194c03a8ec9233e372f90aa0e8722fe036 100644
|
| --- a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.cpp
|
| +++ b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.cpp
|
| @@ -78,6 +78,7 @@ void BackgroundFetchManager::didGetRegistration(
|
| resolver->resolve(registration);
|
| return;
|
| case mojom::blink::BackgroundFetchError::DUPLICATED_TAG:
|
| + case mojom::blink::BackgroundFetchError::INVALID_TAG:
|
| // Not applicable for this callback.
|
| break;
|
| }
|
| @@ -112,6 +113,7 @@ void BackgroundFetchManager::didGetTags(
|
| resolver->resolve(tags);
|
| return;
|
| case mojom::blink::BackgroundFetchError::DUPLICATED_TAG:
|
| + case mojom::blink::BackgroundFetchError::INVALID_TAG:
|
| // Not applicable for this callback.
|
| break;
|
| }
|
|
|