// 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 EXTENSIONS_BROWSER_API_MESSAGING_CHANNEL_ENDPOINT_H_ #define EXTENSIONS_BROWSER_API_MESSAGING_CHANNEL_ENDPOINT_H_ #include "base/memory/raw_ptr.h" #include "extensions/browser/service_worker/worker_id.h" #include "extensions/common/api/messaging/port_context.h" namespace content { class BrowserContext; class RenderFrameHost; } // namespace content namespace extensions { // Represents an endpoint (tab, frame or worker) of a message channel in a // render process or a native messaging host. // TODO(crbug.com/40617215): Consolidate all classes/structs around extension // message ports. class ChannelEndpoint { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_API_MESSAGING_CHANNEL_ENDPOINT_H_