Refactor android test results logging.
[chromium-blink-merge.git] / ppapi / api / private / ppb_flash_device_id.idl
blob1fa49865bfcb179c96daeaf3f95181b25362238c
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
6 /**
7 * This file contains the <code>PPB_Flash_DeviceID</code> interface.
8 */
10 [generate_thunk]
12 label Chrome {
13 M21 = 1.0
16 interface PPB_Flash_DeviceID {
17 PP_Resource Create([in] PP_Instance instance);
19 /**
20 * Asynchronously computes the device ID. When available, it will place the
21 * string in |*id| and will call the completion callback. On failure the
22 * given var will be PP_VARTYPE_UNDEFINED.
24 int32_t GetDeviceID([in] PP_Resource device_id,
25 [out] PP_Var id,
26 [in] PP_CompletionCallback callback);