// Copyright 2022 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_DIRECT_SOCKETS_DELEGATE_H_ #define CONTENT_PUBLIC_BROWSER_DIRECT_SOCKETS_DELEGATE_H_ #include <cstdint> #include <string> #include "content/common/content_export.h" namespace content { class RenderFrameHost; // Allows the embedder to alter the logic of some operations in // content::DirectSocketsServiceImpl. class CONTENT_EXPORT DirectSocketsDelegate { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_DIRECT_SOCKETS_DELEGATE_H_