summaryrefslogtreecommitdiffstats
path: root/ppapi/api/private/ppb_file_ref_private.idl
blob: e19e8ec71efec6c05a3448dbcdf0c5ffc42d8c53 (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
/* 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.
 */

/* This file contains the <code>PPB_FileRefPrivate</code> interface. */
label Chrome {
  M15 = 0.1
};

/* PPB_FileRefPrivate interface */
interface PPB_FileRefPrivate {
  /**
   * GetAbsolutePath() returns the absolute path of the file.
   *
   * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
   * reference.
   *
   * @return A <code>PP_Var</code> containing the absolute path of the file.
   */
  PP_Var GetAbsolutePath([in] PP_Resource file_ref);
};