// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PPAPI_PROXY_INTERFACE_PROXY_H_ #define PPAPI_PROXY_INTERFACE_PROXY_H_ #include "ipc/ipc_listener.h" #include "ipc/ipc_sender.h" #include "ppapi/c/pp_completion_callback.h" #include "ppapi/c/pp_resource.h" #include "ppapi/c/pp_var.h" #include "ppapi/shared_impl/api_id.h" namespace ppapi { namespace proxy { class Dispatcher; class InterfaceProxy : public IPC::Listener, public IPC::Sender { … }; } // namespace proxy } // namespace ppapi #endif // PPAPI_PROXY_INTERFACE_PROXY_H_