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

Unified Diff: ppapi/api/private/ppb_flash_file.idl

Issue 8930023: Rev the Flash interface to add new functionality. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 9 years 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/api/private/ppb_flash_file.idl
diff --git a/ppapi/api/private/ppb_flash_file.idl b/ppapi/api/private/ppb_flash_file.idl
deleted file mode 100644
index 6ad1a8a0d7b6005b0d606138b60a562f959717b9..0000000000000000000000000000000000000000
--- a/ppapi/api/private/ppb_flash_file.idl
+++ /dev/null
@@ -1,81 +0,0 @@
-/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-/* This file contains PPB_Flash_File interface. */
-
-/* A directory entry. */
-struct PP_DirEntry_Dev {
- str_t name;
- PP_Bool is_dir;
-};
-
-/* Directory. */
-struct PP_DirContents_Dev {
- int32_t count;
- [size_is(count)] PP_DirEntry_Dev[] entries;
-};
-
-/* PPB_Flash_File_ModuleLocal */
-interface PPB_Flash_File_ModuleLocal_0_1 {
- /* Opens a module-local file, returning a file descriptor (posix) or a HANDLE
- * (win32) into file. Module-local file paths (here and below) are
- * '/'-separated UTF-8 strings, relative to a module-specific root. The return
- * value is the ppapi error, PP_OK if success, one of the PP_ERROR_* in case
- * of failure
- */
- int32_t OpenFile(
- [in] PP_Instance instance,
- [in] str_t path,
- [in] int32_t mode,
- [out] PP_FileHandle file);
-
- /* Renames a module-local file. The return value is the ppapi error, PP_OK if
- * success, one of the PP_ERROR_* in case of failure.
- */
- int32_t RenameFile(
- [in] PP_Instance instance,
- [in] str_t path_from,
- [in] str_t path_to);
-
- /* Deletes a module-local file or directory. If recursive is set and the path
- * points to a directory, deletes all the contents of the directory. The
- * return value is the ppapi error, PP_OK if success, one of the PP_ERROR_* in
- * case of failure.
- */
- int32_t DeleteFileOrDir(
- [in] PP_Instance instance,
- [in] str_t path,
- [in] PP_Bool recursive);
-
- /* Creates a module-local directory. The return value is the ppapi error,
- * PP_OK if success, one of the PP_ERROR_* in case of failure.
- */
- int32_t CreateDir(
- [in] PP_Instance instance,
- [in] str_t path);
-
- /* Queries information about a module-local file. The return value is the
- * ppapi error, PP_OK if success, one of the PP_ERROR_* in case of failure.
- */
- int32_t QueryFile(
- [in] PP_Instance instance,
- [in] str_t path,
- [out] PP_FileInfo_Dev info);
-
- /* Gets the list of files contained in a module-local directory. The return
- * value is the ppapi error, PP_OK if success, one of the PP_ERROR_* in case
- * of failure. If non-NULL, the returned contents should be freed with
- * FreeDirContents.
- */
- int32_t GetDirContents(
- [in] PP_Instance instance,
- [in] str_t path,
- [out] PP_DirContents_Dev contents);
-
- /* Frees the data allocated by GetDirContents. */
- void FreeDirContents(
- [in] PP_Instance instance,
- [in] PP_DirContents_Dev contents);
-};

Powered by Google App Engine
This is Rietveld 408576698