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

Unified Diff: ppapi/c/trusted/ppb_file_io_trusted.h

Issue 7210027: Part I of many. Moving FileIO, FileRef, and FileSystem out of Dev. For now, just copying over s... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 6 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/c/trusted/ppb_file_io_trusted.h
===================================================================
--- ppapi/c/trusted/ppb_file_io_trusted.h (revision 89748)
+++ ppapi/c/trusted/ppb_file_io_trusted.h (working copy)
@@ -2,19 +2,19 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-#ifndef PPAPI_C_DEV_PPB_FILE_IO_TRUSTED_DEV_H_
-#define PPAPI_C_DEV_PPB_FILE_IO_TRUSTED_DEV_H_
+#ifndef PPAPI_C_PPB_FILE_IO_TRUSTED_H_
+#define PPAPI_C_PPB_FILE_IO_TRUSTED_H_
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
struct PP_CompletionCallback;
-#define PPB_FILEIOTRUSTED_DEV_INTERFACE_0_2 "PPB_FileIOTrusted(Dev);0.2"
-#define PPB_FILEIOTRUSTED_DEV_INTERFACE PPB_FILEIOTRUSTED_DEV_INTERFACE_0_2
+#define PPB_FILEIOTRUSTED_INTERFACE_1_0 "PPB_FileIOTrusted(Dev);1.0"
nfullagar 2011/06/21 20:15:23 Please see earlier comment on interface #
Sang Ahn 2011/06/21 20:41:08 Done.
+#define PPB_FILEIOTRUSTED_INTERFACE PPB_FILEIOTRUSTED_INTERFACE_1_0
// Available only to trusted implementations.
-struct PPB_FileIOTrusted_Dev {
+struct PPB_FileIOTrusted {
// Returns a file descriptor corresponding to the given FileIO object. On
// Windows, returns a HANDLE; on all other platforms, returns a POSIX file
// descriptor. The FileIO object must have been opened with a successful
@@ -44,5 +44,4 @@
// undesirable.
};
-#endif /* PPAPI_C_DEV_PPB_FILE_IO_TRUSTED_DEV_H_ */
-
+#endif /* PPAPI_C_PPB_FILE_IO_TRUSTED_H_ */

Powered by Google App Engine
This is Rietveld 408576698