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

Side by Side Diff: trunk/src/ppapi/c/private/ppp_pexe_stream_handler.h

Issue 406323003: Revert 284684 "Pepper: Delete FileDownloader in trusted plugin." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 /* From private/ppp_pexe_stream_handler.idl,
7 * modified Thu Jul 10 11:05:31 2014.
8 */
9
10 #ifndef PPAPI_C_PRIVATE_PPP_PEXE_STREAM_HANDLER_H_
11 #define PPAPI_C_PRIVATE_PPP_PEXE_STREAM_HANDLER_H_
12
13 #include "ppapi/c/pp_macros.h"
14 #include "ppapi/c/pp_stdint.h"
15
16 #define PPP_PEXESTREAMHANDLER_INTERFACE_1_0 "PPP_PexeStreamHandler;1.0"
17 #define PPP_PEXESTREAMHANDLER_INTERFACE PPP_PEXESTREAMHANDLER_INTERFACE_1_0
18
19 /**
20 * @file
21 * This file contains NaCl private interfaces. This interface is not versioned
22 * and is for internal Chrome use. It may change without notice. */
23
24
25 #include "ppapi/c/private/pp_file_handle.h"
26
27 /**
28 * @addtogroup Interfaces
29 * @{
30 */
31 struct PPP_PexeStreamHandler_1_0 {
32 /**
33 * Invoked as a result of a cache hit for a translated pexe.
34 */
35 void (*DidCacheHit)(void* user_data, PP_FileHandle nexe_file_handle);
36 /**
37 * Invoked as a result of a cache miss for a translated pexe.
38 * Provides the expected length of the pexe, as read from HTTP headers.
39 */
40 void (*DidCacheMiss)(void* user_data, int64_t expected_total_length);
41 /**
42 * Invoked when a block of data has been downloaded.
43 * Only invoked after DidCacheMiss().
44 */
45 void (*DidStreamData)(void* user_data, const void* data, int32_t length);
46 /**
47 * Invoked when the stream has finished downloading, regardless of whether it
48 * succeeded. Not invoked if DidCacheHit() was called.
49 */
50 void (*DidFinishStream)(void* user_data, int32_t pp_error);
51 };
52
53 typedef struct PPP_PexeStreamHandler_1_0 PPP_PexeStreamHandler;
54 /**
55 * @}
56 */
57
58 #endif /* PPAPI_C_PRIVATE_PPP_PEXE_STREAM_HANDLER_H_ */
59
OLDNEW
« no previous file with comments | « trunk/src/ppapi/c/private/ppb_nacl_private.h ('k') | trunk/src/ppapi/native_client/src/trusted/plugin/callback_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698