// 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_DEVTOOLS_BACKGROUND_SERVICES_CONTEXT_H_ #define CONTENT_PUBLIC_BROWSER_DEVTOOLS_BACKGROUND_SERVICES_CONTEXT_H_ #include <stdint.h> #include <map> #include <string> #include "content/common/content_export.h" namespace blink { class StorageKey; } // namespace blink namespace content { enum class DevToolsBackgroundService { … }; // This class is responsible for persisting the debugging events for the // relevant Web Platform Features. class CONTENT_EXPORT DevToolsBackgroundServicesContext { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_BACKGROUND_SERVICES_CONTEXT_H_