blob: 07bffef39d7a5e84b903f48b7692edc3b144f62e [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/background_fetch/background_fetch_fetch.h"
#include "third_party/blink/renderer/core/fetch/request.h"
namespace blink {
BackgroundFetchFetch::BackgroundFetchFetch(Request* request)
: request_(request) {}
Request* BackgroundFetchFetch::request() const {
return request_;
}
void BackgroundFetchFetch::Trace(blink::Visitor* visitor) {
visitor->Trace(request_);
ScriptWrappable::Trace(visitor);
}
} // namespace blink