| Index: third_party/WebKit/Source/modules/background_fetch/BackgroundFetchRegistration.cpp
|
| diff --git a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchRegistration.cpp b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchRegistration.cpp
|
| index 0a7aefe160c715595eda47b993d0264856bb98c1..b5ed2d0963c5fe4398dcb62928ec19d45d3caae8 100644
|
| --- a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchRegistration.cpp
|
| +++ b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchRegistration.cpp
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "modules/background_fetch/BackgroundFetchRegistration.h"
|
|
|
| +#include "modules/background_fetch/BackgroundFetchBridge.h"
|
| #include "modules/background_fetch/IconDefinition.h"
|
| #include "modules/serviceworkers/ServiceWorkerRegistration.h"
|
|
|
| @@ -40,8 +41,7 @@ String BackgroundFetchRegistration::title() const {
|
| }
|
|
|
| void BackgroundFetchRegistration::abort() {
|
| - // TODO(peter): Implement the ability to abort the active background fetch
|
| - // for the |m_registration| identified by the |m_tag|.
|
| + BackgroundFetchBridge::from(m_registration)->abort(m_tag);
|
| }
|
|
|
| DEFINE_TRACE(BackgroundFetchRegistration) {
|
|
|