blob: 1ee03abd8ce16a4f54d4107ce64966c5c2edd28f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* Copyright (c) 2012 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 defines the trusted file IO interface
*/
label Chrome {
M14= 0.4
};
// Available only to trusted implementations.
interface 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
* call to FileIO::Open. The file descriptor will be closed automatically
* when the FileIO object is closed or destroyed.
*/
int32_t GetOSFileDescriptor([in] PP_Resource file_io);
/**
* Notifies the browser that underlying file will be modified. This gives
* the browser the opportunity to apply quota restrictions and possibly
* return an error to indicate that the write is not allowed.
*/
int32_t WillWrite([in] PP_Resource file_io,
[in] int64_t offset,
[in] int32_t bytes_to_write,
[in] PP_CompletionCallback callback);
/**
* Notifies the browser that underlying file will be modified. This gives
* the browser the opportunity to apply quota restrictions and possibly
* return an error to indicate that the write is not allowed.
*
* TODO(darin): Maybe unify the above into a single WillChangeFileSize
* method? The above methods have the advantage of mapping to PPB_FileIO
* Write and SetLength calls. WillChangeFileSize would require the caller to
* compute the file size resulting from a Write call, which may be
* undesirable.
*/
int32_t WillSetLength([in] PP_Resource file_io,
[in] int64_t length,
[in] PP_CompletionCallback callback);
};
|