// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_TEST_CHROMEDRIVER_NET_STUB_SYNC_WEBSOCKET_H_ #define CHROME_TEST_CHROMEDRIVER_NET_STUB_SYNC_WEBSOCKET_H_ #include <limits> #include <queue> #include <string> #include <unordered_map> #include "base/functional/callback_forward.h" #include "base/values.h" #include "chrome/test/chromedriver/net/sync_websocket.h" // Proxy for using a WebSocket running on a background thread synchronously. class StubSyncWebSocket : public SyncWebSocket { … }; #endif // CHROME_TEST_CHROMEDRIVER_NET_STUB_SYNC_WEBSOCKET_H_