/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* 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 Mon Feb 27 13:31:21 2012. */
#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_stdint.h"
#include "ppapi/c/pp_var.h"
#define PPB_MESSAGING_INTERFACE_1_0 "PPB_Messaging;1.0"
#define PPB_MESSAGING_INTERFACE PPB_MESSAGING_INTERFACE_1_0
/**
* @file
* This file defines the PPB_Messaging
interface implemented
* by the browser for sending messages to DOM elements associated with a
* specific module instance.
*/
/**
* @addtogroup Interfaces
* @{
*/
/**
* The PPB_Messaging
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_0 {
/**
* PostMessage() asynchronously invokes any listeners for message events on
* the DOM element for the given module instance. A call to PostMessage()
* will not block while the message is processed.
*
* @param[in] instance A PP_Instance
identifying one instance
* of a module.
* @param[in] message A PP_Var
containing the data to be sent to
* JavaScript.
* Message can have a numeric, boolean, or string value; arrays and
* dictionaries are not yet supported. Ref-counted var types are copied, and
* are therefore not shared between the module instance and the browser.
*
* Listeners for message events in JavaScript code will receive an object
* conforming to the HTML 5 MessageEvent
interface.
* Specifically, the value of message will be contained as a property called
* data in the received MessageEvent
.
*
* This messaging system is similar to the system used for listening for
* messages from Web Workers. Refer to
* http://www.whatwg.org/specs/web-workers/current-work/
for
* further information.
*
* Example:
*
* @code
*
*