blob: 8060bd1b45c7d66972905933834c295bed32ae31 [file] [log] [blame]
// Copyright 2019 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.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_WORKER_RESOURCE_FETCHER_PROPERTIES_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_WORKER_RESOURCE_FETCHER_PROPERTIES_H_
#include "third_party/blink/renderer/platform/heap/handle.h"
#include "third_party/blink/renderer/platform/loader/fetch/resource_fetcher_properties.h"
namespace blink {
class WebWorkerFetchContext;
class WorkerOrWorkletGlobalScope;
// WorkerResourceFetcherProperties is a ResourceFetcherProperties implementation
// for workers and worklets.
class WorkerResourceFetcherProperties final : public ResourceFetcherProperties {
public:
WorkerResourceFetcherProperties(
WorkerOrWorkletGlobalScope&,
scoped_refptr<WebWorkerFetchContext> web_context);
~WorkerResourceFetcherProperties() override = default;
void Trace(Visitor* visitor) override;
// ResourceFetcherProperties implementation
bool IsMainFrame() const override { return false; }
ControllerServiceWorkerMode GetControllerServiceWorkerMode() const override;
int64_t ServiceWorkerId() const override {
DCHECK_NE(GetControllerServiceWorkerMode(),
mojom::ControllerServiceWorkerMode::kNoController);
// Currently ServiceWorkerId is used only with MemoryCache which is disabled
// on a non-main thread. Hence this value doesn't matter.
// TODO(nhiroki): Return the valid service worker ID and make this function
// available also on a non-main thread.
return -1;
}
bool IsPaused() const override;
bool IsLoadComplete() const override { return false; }
bool ShouldBlockLoadingMainResource() const override { return false; }
bool ShouldBlockLoadingSubResource() const override { return false; }
private:
const Member<WorkerOrWorkletGlobalScope> global_scope_;
const scoped_refptr<WebWorkerFetchContext> web_context_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_WORKER_RESOURCE_FETCHER_PROPERTIES_H_