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

Unified Diff: ppapi/cpp/dev/file_ref_dev.cc

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 | « ppapi/cpp/dev/file_ref_dev.h ('k') | ppapi/examples/file_chooser/file_chooser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/file_ref_dev.cc
===================================================================
--- ppapi/cpp/dev/file_ref_dev.cc (revision 75293)
+++ ppapi/cpp/dev/file_ref_dev.cc (working copy)
@@ -86,14 +86,6 @@
cc.pp_completion_callback());
}
-int32_t FileRef_Dev::Query(PP_FileInfo_Dev* result_buf,
- const CompletionCallback& cc) {
- if (!has_interface<PPB_FileRef_Dev>())
- return PP_ERROR_NOINTERFACE;
- return get_interface<PPB_FileRef_Dev>()->Query(
- pp_resource(), result_buf, cc.pp_completion_callback());
-}
-
int32_t FileRef_Dev::Touch(PP_Time last_access_time,
PP_Time last_modified_time,
const CompletionCallback& cc) {
« no previous file with comments | « ppapi/cpp/dev/file_ref_dev.h ('k') | ppapi/examples/file_chooser/file_chooser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698