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

Side by Side Diff: src/trusted/gio/gio_nacl_desc.h

Issue 594733005: Cleanup: Remove src/trusted/gio/, since it is unused (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix Created 6 years, 3 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
« no previous file with comments | « src/trusted/gio/build.scons ('k') | src/trusted/gio/gio_nacl_desc.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2010 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 /*
8 * Subclass of the gio object that wraps NaClDesc objects. Direct
9 * read/write pass through is done.
10 */
11
12 #ifndef NATIVE_CLIENT_SRC_TRUSTED_GIO_WRAPPED_DESC_GIO_NACL_DESC_H_
13 #define NATIVE_CLIENT_SRC_TRUSTED_GIO_WRAPPED_DESC_GIO_NACL_DESC_H_
14
15 #include "native_client/src/include/nacl_base.h"
16
17 #include "native_client/src/shared/gio/gio.h"
18
19 EXTERN_C_BEGIN
20
21 struct NaClDesc;
22
23 struct NaClGioNaClDesc {
24 struct Gio base;
25 struct NaClDesc *wrapped;
26 };
27
28 /*
29 * The Ctor takes a new reference to wrapped.
30 */
31 int NaClGioNaClDescCtor(struct NaClGioNaClDesc *self,
32 struct NaClDesc *wrapped);
33
34 #endif /* NATIVE_CLIENT_SRC_TRUSTED_GIO_WRAPPED_DESC_GIO_NACL_DESC_H_ */
OLDNEW
« no previous file with comments | « src/trusted/gio/build.scons ('k') | src/trusted/gio/gio_nacl_desc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698