blob: b766bbbe76958f97b62e832c185a47ec307aaa60 [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,
12};
13
14#endif // IPC_IPC_DESCRIPTORS_H_