summaryrefslogtreecommitdiffstats
path: root/ppapi/api/trusted/ppb_buffer_trusted.idl
blob: 1606928c6d64f1e586e8a36d8f26acd265f7f067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Copyright (c) 2011 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.
 */

/**
 * This file defines the trusted buffer interface.
 */

label Chrome {
  M14 = 0.1
};

[macro="PPB_BUFFER_TRUSTED_INTERFACE"]
interface PPB_BufferTrusted {
  /**
   * Returns the internal shared memory pointer associated with the given
   * Buffer resource.  Used for proxying.  Returns PP_OK on success, or
   * PP_ERROR_* on failure.  On success, the size in bytes of the shared
   * memory region will be placed into |*byte_count|, and the handle for
   * the shared memory in |*handle|.
   */
  int32_t GetSharedMemory([in] PP_Resource buffer, [out] handle_t handle);
};