/* 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 PPB_FileRefPrivate
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 PP_Resource
corresponding to a file
* reference.
*
* @return A PP_Var
containing the absolute path of the file.
*/
PP_Var GetAbsolutePath([in] PP_Resource file_ref);
};