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

Unified Diff: webkit/plugins/ppapi/ppb_flash_file_impl.cc

Issue 6594099: Pepper/Flapper: Get rid of unimplemented private file ref stuff and implement proxy. (Closed) Base URL: svn://svn.chromium.org/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
« no previous file with comments | « ppapi/proxy/ppb_flash_file_proxy.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_flash_file_impl.cc
diff --git a/webkit/plugins/ppapi/ppb_flash_file_impl.cc b/webkit/plugins/ppapi/ppb_flash_file_impl.cc
index 098f233ac2b16f80f6c2fa99cbdb3e61d5a6fb59..48e4ab0de3b04338ff3ce0418cde259aabf44d5b 100644
--- a/webkit/plugins/ppapi/ppb_flash_file_impl.cc
+++ b/webkit/plugins/ppapi/ppb_flash_file_impl.cc
@@ -251,26 +251,6 @@ int32_t OpenFileRefFile(PP_Resource file_ref_id,
return PlatformFileErrorToPepperError(result);
}
-int32_t RenameFileRefFile(PP_Resource from_file_ref_id,
- PP_Resource to_file_ref_id) {
- // If it proves necessary, it's easy enough to implement.
- NOTIMPLEMENTED();
- return PP_ERROR_FAILED;
-}
-
-int32_t DeleteFileRefFileOrDir(PP_Resource file_ref_id,
- PP_Bool recursive) {
- // If it proves necessary, it's easy enough to implement.
- NOTIMPLEMENTED();
- return PP_ERROR_FAILED;
-}
-
-int32_t CreateFileRefDir(PP_Resource file_ref_id) {
- // If it proves necessary, it's easy enough to implement.
- NOTIMPLEMENTED();
- return PP_ERROR_FAILED;
-}
-
int32_t QueryFileRefFile(PP_Resource file_ref_id,
PP_FileInfo_Dev* info) {
scoped_refptr<PPB_FileRef_Impl> file_ref(
@@ -300,21 +280,9 @@ int32_t QueryFileRefFile(PP_Resource file_ref_id,
return PlatformFileErrorToPepperError(result);
}
-int32_t GetFileRefDirContents(PP_Resource file_ref_id,
- PP_DirContents_Dev** contents) {
- // If it proves necessary, it's easy enough to implement.
- NOTIMPLEMENTED();
- return PP_ERROR_FAILED;
-}
-
const PPB_Flash_File_FileRef ppb_flash_file_fileref = {
&OpenFileRefFile,
- &RenameFileRefFile,
- &DeleteFileRefFileOrDir,
- &CreateFileRefDir,
&QueryFileRefFile,
- &GetFileRefDirContents,
- &FreeDirContents,
};
} // namespace
« no previous file with comments | « ppapi/proxy/ppb_flash_file_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698