blob: 29020dacd0c945146701d616779502c54c6328c0 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ipc/ipc_listener.h"
namespace IPC {
bool Listener::OnMessageReceived(const Message& message) {
return false;
}
std::string Listener::ToDebugString() {
return "IPC::Listener";
}
} // namespace IPC