blob: 2e138ba50d613857e0b9e2f2c05d5c447e8e8b74 [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.
#ifndef THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_WORKER_FETCH_CONTEXT_H_
#define THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_WORKER_FETCH_CONTEXT_H_
#include <memory>
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_refptr.h"
#include "base/unguessable_token.h"
#include "third_party/blink/public/mojom/service_worker/controller_service_worker_mode.mojom-shared.h"
#include "third_party/blink/public/platform/code_cache_loader.h"
#include "third_party/blink/public/platform/web_application_cache_host.h"
#include "third_party/blink/public/platform/web_document_subresource_filter.h"
#include "third_party/blink/public/platform/web_security_origin.h"
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/public/platform/web_url.h"
#include "third_party/blink/public/platform/web_url_loader_factory.h"
#include "third_party/blink/public/platform/websocket_handshake_throttle.h"
namespace base {
class WaitableEvent;
} // namespace base
namespace blink {
class WebURLRequest;
class WebDocumentSubresourceFilter;
// Helper class allowing WebWorkerFetchContextImpl to notify blink upon an
// accept languages update. This class will be extended by WorkerNavigator.
class AcceptLanguagesWatcher {
public:
virtual void NotifyUpdate() = 0;
};
// WebWorkerFetchContext is a per-worker object created on the main thread,
// passed to a worker (dedicated, shared and service worker) and initialized on
// the worker thread by InitializeOnWorkerThread(). It contains information
// about the resource fetching context (ex: service worker provider id), and is
// used to create a new WebURLLoader instance in the worker thread.
//
// A single WebWorkerFetchContext is used for both worker
// subresource fetch (i.e. "insideSettings") and off-the-main-thread top-level
// worker script fetch (i.e. fetch as "outsideSettings"), as they both should be
// e.g. controlled by the same ServiceWorker (if any) and thus can share a
// single WebURLLoaderFactory.
//
// Note that WebWorkerFetchContext and WorkerFetchContext do NOT correspond 1:1
// as multiple WorkerFetchContext can be created after crbug.com/880027.
class WebWorkerFetchContext : public base::RefCounted<WebWorkerFetchContext> {
public:
REQUIRE_ADOPTION_FOR_REFCOUNTED_TYPE();
virtual ~WebWorkerFetchContext() = default;
// Used to copy a worker fetch context between worker threads.
virtual scoped_refptr<WebWorkerFetchContext> CloneForNestedWorker(
scoped_refptr<base::SingleThreadTaskRunner>) {
return nullptr;
}
// Set a raw pointer of a WaitableEvent which will be signaled from the main
// thread when the worker's GlobalScope is terminated, which will terminate
// sync loading requests on the worker thread. It is guaranteed that the
// pointer is valid throughout the lifetime of this context.
virtual void SetTerminateSyncLoadEvent(base::WaitableEvent*) = 0;
virtual void InitializeOnWorkerThread(AcceptLanguagesWatcher*) = 0;
// Returns a WebURLLoaderFactory which is associated with the worker context.
// The returned WebURLLoaderFactory is owned by |this|.
virtual WebURLLoaderFactory* GetURLLoaderFactory() = 0;
// Returns a new WebURLLoaderFactory that wraps the given
// network::mojom::URLLoaderFactory.
virtual std::unique_ptr<WebURLLoaderFactory> WrapURLLoaderFactory(
mojo::ScopedMessagePipeHandle url_loader_factory_handle) = 0;
// Returns a CodeCacheLoader that fetches data from code caches. If
// a nullptr is returned then data would not be fetched from the code
// cache.
virtual std::unique_ptr<CodeCacheLoader> CreateCodeCacheLoader() {
return nullptr;
}
// Returns a WebURLLoaderFactory for loading scripts in this worker context.
// Unlike GetURLLoaderFactory(), this may return nullptr.
// The returned WebURLLoaderFactory is owned by |this|.
virtual WebURLLoaderFactory* GetScriptLoaderFactory() { return nullptr; }
// Called when a request is about to be sent out to modify the request to
// handle the request correctly in the loading stack later. (Example: service
// worker)
virtual void WillSendRequest(WebURLRequest&) = 0;
// Whether the fetch context is controlled by a service worker.
virtual blink::mojom::ControllerServiceWorkerMode
IsControlledByServiceWorker() const = 0;
// This flag is used to block all mixed content in subframes.
virtual void SetIsOnSubframe(bool) {}
virtual bool IsOnSubframe() const { return false; }
// The URL that should be consulted for the third-party cookie blocking
// policy, as defined in Section 2.1.1 and 2.1.2 of
// https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site.
// See content::URLRequest::site_for_cookies() for details.
virtual WebURL SiteForCookies() const = 0;
// The top-frame-origin for the worker. For a dedicated worker this is the
// top-frame origin of the page that created the worker. For a shared worker
// or a service worker this is unset.
virtual base::Optional<WebSecurityOrigin> TopFrameOrigin() const = 0;
// Reports the certificate error to the browser process.
virtual void DidRunContentWithCertificateErrors() {}
virtual void DidDisplayContentWithCertificateErrors() {}
// Reports that the security origin has run active content from an insecure
// source.
virtual void DidRunInsecureContent(const WebSecurityOrigin&,
const WebURL& insecure_url) {}
virtual void SetApplicationCacheHostID(const base::UnguessableToken& id) {}
// Sets the builder object of WebDocumentSubresourceFilter on the main thread
// which will be used in TakeSubresourceFilter() to create a
// WebDocumentSubresourceFilter on the worker thread.
virtual void SetSubresourceFilterBuilder(
std::unique_ptr<WebDocumentSubresourceFilter::Builder>) {}
// Creates a WebDocumentSubresourceFilter on the worker thread using the
// WebDocumentSubresourceFilter::Builder which is set on the main thread.
// This method should only be called once.
virtual std::unique_ptr<WebDocumentSubresourceFilter>
TakeSubresourceFilter() {
return nullptr;
}
// Creates a WebSocketHandshakeThrottle on the worker thread. |task_runner| is
// used for internal IPC handling of the throttle, and must be bound to the
// same sequence to the current one (which is the worker thread).
virtual std::unique_ptr<blink::WebSocketHandshakeThrottle>
CreateWebSocketHandshakeThrottle(
scoped_refptr<base::SingleThreadTaskRunner> task_runner) {
return nullptr;
}
// Returns the current list of user prefered languages.
virtual blink::WebString GetAcceptLanguages() const = 0;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_PUBLIC_PLATFORM_WEB_WORKER_FETCH_CONTEXT_H_