Index: third_party/WebKit/Source/modules/background_fetch/BackgroundFetchBridge.cpp |
diff --git a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchBridge.cpp b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchBridge.cpp |
index a0b283e6cf0f7528beb7508bfed29ef2102e6436..c414ca8176c6890c4985eaa451139dea7260d2f1 100644 |
--- a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchBridge.cpp |
+++ b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchBridge.cpp |
@@ -50,10 +50,9 @@ void BackgroundFetchBridge::fetch( |
Vector<WebServiceWorkerRequest> requests, |
const BackgroundFetchOptions& options, |
std::unique_ptr<RegistrationCallback> callback) { |
- // TODO(peter): Include |requests| in the Mojo call. |
getService()->Fetch( |
supplementable()->webRegistration()->registrationId(), tag, |
- mojom::blink::BackgroundFetchOptions::From(options), |
+ std::move(requests), mojom::blink::BackgroundFetchOptions::From(options), |
convertToBaseCallback( |
WTF::bind(&BackgroundFetchBridge::didGetRegistration, |
wrapPersistent(this), WTF::passed(std::move(callback))))); |