#ifndef PPAPI_SHARED_IMPL_FILE_REF_CREATE_INFO_H_
#define PPAPI_SHARED_IMPL_FILE_REF_CREATE_INFO_H_
#include <string>
#include "base/files/file_path.h"
#include "ppapi/c/pp_file_info.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/shared_impl/ppapi_shared_export.h"
namespace ppapi {
struct FileRefCreateInfo { … };
PPAPI_SHARED_EXPORT FileRefCreateInfo
MakeExternalFileRefCreateInfo(const base::FilePath& external_path,
const std::string& display_name,
int browser_pending_host_resource_id,
int renderer_pending_host_resource_id);
}
#endif