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

Side by Side Diff: ppapi/native_client/src/trusted/plugin/file_utils.h

Issue 261143002: Pepper: Remove file_utils from trusted plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 years, 7 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 (c) 2013 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 // Some common file utilities for plugin code.
6
7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_FILE_UTILS_H_
8 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_FILE_UTILS_H_
9
10 #include "native_client/src/include/nacl_string.h"
11 #include "native_client/src/include/portability_io.h"
12 #include "ppapi/c/pp_stdint.h"
13
14 namespace plugin {
15 namespace file_utils {
16
17 enum StatusCode {
18 PLUGIN_FILE_SUCCESS = 0,
19 PLUGIN_FILE_ERROR_MEM_ALLOC = 1,
20 PLUGIN_FILE_ERROR_OPEN = 2,
21 PLUGIN_FILE_ERROR_FILE_TOO_LARGE = 3,
22 PLUGIN_FILE_ERROR_STAT = 4,
23 PLUGIN_FILE_ERROR_READ = 5
24 };
25
26 // Slurp the whole contents of the given file (|fd| - open file descriptor) into
27 // |out_buf|. |max_size_to_read| is the maximal allowed size of the file.
28 // If the file turns out to be larger, an error is returned. In any case,
29 // |fd| is closed.
30 StatusCode SlurpFile(int32_t fd,
31 nacl::string& out_buf,
32 size_t max_size_to_read = (1 << 20));
33
34 } // namespace file_utils
35 } // namespace plugin
36
37 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_FILE_UTILS_H_
38
OLDNEW
« no previous file with comments | « ppapi/c/private/ppb_nacl_private.h ('k') | ppapi/native_client/src/trusted/plugin/file_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698