// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef IPC_IPC_TEST_CHANNEL_LISTENER_H_ #define IPC_IPC_TEST_CHANNEL_LISTENER_H_ #include <stddef.h> #include "base/memory/raw_ptr.h" #include "ipc/ipc_listener.h" namespace IPC { class Sender; // A generic listener that expects messages of a certain type (see // OnMessageReceived()), and either sends a generic response or quits after the // 50th message (or on channel error). class TestChannelListener : public Listener { … }; } #endif // IPC_IPC_TEST_CHANNEL_LISTENER_H_