/* 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. */ /* From ppb_messaging.idl modified Wed Sep 24 10:48:37 2014. */ #ifndef PPAPI_C_PPB_MESSAGING_H_ #define PPAPI_C_PPB_MESSAGING_H_ #include "ppapi/c/pp_bool.h" #include "ppapi/c/pp_instance.h" #include "ppapi/c/pp_macros.h" #include "ppapi/c/pp_resource.h" #include "ppapi/c/pp_stdint.h" #include "ppapi/c/pp_var.h" #include "ppapi/c/ppp_message_handler.h" #define PPB_MESSAGING_INTERFACE_1_0 … #define PPB_MESSAGING_INTERFACE_1_2 … #define PPB_MESSAGING_INTERFACE … /** * @file * This file defines the <code>PPB_Messaging</code> interface implemented * by the browser for sending messages to DOM elements associated with a * specific module instance. */ /** * @addtogroup Interfaces * @{ */ /** * The <code>PPB_Messaging</code> interface is implemented by the browser * and is related to sending messages to JavaScript message event listeners on * the DOM element associated with specific module instance. */ struct PPB_Messaging_1_2 { … }; PPB_Messaging; struct PPB_Messaging_1_0 { … }; /** * @} */ #endif /* PPAPI_C_PPB_MESSAGING_H_ */