Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Unified Diff: ppapi/c/dev/ppb_file_ref_dev.h

Issue 6519057: Implement proxying for FileRef and FileChooser.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Fix ppapi tests to account for query change Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ppapi/c/private/ppb_proxy_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/ppb_file_ref_dev.h
===================================================================
--- ppapi/c/dev/ppb_file_ref_dev.h (revision 75293)
+++ ppapi/c/dev/ppb_file_ref_dev.h (working copy)
@@ -5,13 +5,13 @@
#ifndef PPAPI_C_DEV_PPB_FILE_REF_DEV_H_
#define PPAPI_C_DEV_PPB_FILE_REF_DEV_H_
-#include "ppapi/c/pp_bool.h"
#include "ppapi/c/dev/pp_file_info_dev.h"
+#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_var.h"
-#define PPB_FILEREF_DEV_INTERFACE "PPB_FileRef(Dev);0.5"
+#define PPB_FILEREF_DEV_INTERFACE "PPB_FileRef(Dev);0.6"
// A FileRef is a "weak pointer" to a file in a file system. It contains a
// PP_FileSystemType identifier and a file path string.
@@ -51,12 +51,6 @@
PP_Bool make_ancestors,
struct PP_CompletionCallback callback);
- // Queries info about the file. You must have read access to this file if it
- // exists in the external filesystem.
- int32_t (*Query)(PP_Resource file_ref,
- struct PP_FileInfo_Dev* info,
- struct PP_CompletionCallback callback);
-
// Updates timestamps for a file. You must have write access to the file if
// it exists in the external filesystem.
int32_t (*Touch)(PP_Resource file_ref,
« no previous file with comments | « no previous file | ppapi/c/private/ppb_proxy_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698