// Copyright 2012 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_LISTENER_H_ #define IPC_IPC_LISTENER_H_ #include <stdint.h> #include <string> #include "base/component_export.h" #include "build/build_config.h" #include "mojo/public/cpp/bindings/scoped_interface_endpoint_handle.h" namespace IPC { class Message; // Implemented by consumers of a Channel to receive messages. class COMPONENT_EXPORT(IPC) Listener { … }; } // namespace IPC #endif // IPC_IPC_LISTENER_H_