// Copyright 2023 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_PIPE_CONNECTION_POSIX_H_ #define CHROME_TEST_CHROMEDRIVER_NET_PIPE_CONNECTION_POSIX_H_ #include "base/files/platform_file.h" #include "base/functional/callback.h" #include "base/memory/weak_ptr.h" #include "base/synchronization/condition_variable.h" #include "base/threading/thread_checker.h" #include "chrome/test/chromedriver/net/sync_websocket.h" class PipeReader; class PipeWriter; class PipeConnectionPosix : public SyncWebSocket { … }; #endif // CHROME_TEST_CHROMEDRIVER_NET_PIPE_CONNECTION_POSIX_H_