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

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: 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
Index: ppapi/cpp/dev/file_ref_dev.cc
===================================================================
--- ppapi/cpp/dev/file_ref_dev.cc (revision 74966)
+++ 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) {

Powered by Google App Engine
This is Rietveld 408576698