// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_SERVICE_WORKER_RUNNING_INFO_H_ #define CONTENT_PUBLIC_BROWSER_SERVICE_WORKER_RUNNING_INFO_H_ #include "content/common/content_export.h" #include "content/public/browser/child_process_host.h" #include "third_party/blink/public/common/storage_key/storage_key.h" #include "third_party/blink/public/common/tokens/tokens.h" #include "url/gurl.h" namespace content { // A struct containing information about a running service worker. struct CONTENT_EXPORT ServiceWorkerRunningInfo { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_SERVICE_WORKER_RUNNING_INFO_H_