blob: 9dcff8ceb1394879fe4077321a1dee97af00e6b7 [file] [log] [blame]
agl@chromium.org1c6dcf22009-07-23 08:57:21 +09001// Copyright (c) 2009 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#ifndef IPC_IPC_DESCRIPTORS_H_
6#define IPC_IPC_DESCRIPTORS_H_
agl@chromium.org1c6dcf22009-07-23 08:57:21 +09007
8// This is a list of global descriptor keys to be used with the
brettw@chromium.orgea3b3f22012-11-10 08:46:54 +09009// base::GlobalDescriptors object (see base/posix/global_descriptors.h)
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090010enum {
11 kPrimaryIPCChannel = 0,
rmcilroy@chromium.org72e9e7c2013-10-16 20:59:29 +090012 kStatsTableSharedMemFd,
13
14 // The first key that can be use to register descriptors.
15 kIPCDescriptorMax
agl@chromium.org1c6dcf22009-07-23 08:57:21 +090016};
17
18#endif // IPC_IPC_DESCRIPTORS_H_