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

Side by Side Diff: components/nacl/loader/nonsfi/abi_conversion.h

Issue 131133002: Implement nacl_irt_fdio for non-sfi mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
Mark Seaborn 2014/01/10 13:11:20 This file should use the standard #ifndef+#define
hidehiko 2014/01/15 03:50:44 Oops. Good catch. Fixed.
5 extern "C" {
Mark Seaborn 2014/01/10 13:11:20 'extern "C"' doesn't affect struct declarations, s
hidehiko 2014/01/15 03:50:44 Done.
6 struct stat;
7 struct nacl_abi_stat;
8 }
9
10 namespace nacl {
11 namespace nonsfi {
12
13 // Converts the stat struct from host's to NaCl's ABI.
14 void StatToNaClAbiStat(
15 const struct stat& host_stat, struct nacl_abi_stat* nacl_stat);
16
17 } // namespace nonsfi
18 } // namespace nacl
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698