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

Side by Side Diff: chrome/nacl/nacl_helper_linux.h

Issue 6995121: New NaCl zygote implementation 2 (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: NaCl helper for Chrome Linux zygote Created 9 years, 6 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) 2011 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 // A mini-zygote specifically for Native Client.
6
7 // Please do not include Chrome-specific include files here.
8 // This include file is meant to be useable outside of Chrome.
agl 2011/06/10 17:28:03 s/useable/usable/
Brad Chen 2011/06/14 00:16:01 Done.
9 #ifndef CHROME_NACL_NACL_HELPER_LINUX_H_
10 #define CHROME_NACL_NACL_HELPER_LINUX_H_
11 #pragma once
12
13 static const char kNaClHelperMagic[] = "NACLHELPER_OK";
14 static const char kNaClChildMagic[] = "NACLCHILD_OK";
15 static const char kNaClForkRequest[] = "NACLFORK";
16 static const int kZygoteDescriptor = 3;
17
18 #endif // CHROME_NACL_NACL_HELPER_LINUX_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698