OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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 CONTENT_PUBLIC_COMMON_DESCRIPTORS_H_ | |
6 #define CONTENT_PUBLIC_COMMON_DESCRIPTORS_H_ | |
7 | |
8 #include "ipc/ipc_descriptors.h" | |
9 | |
10 namespace content { | |
11 // The first key that embedders can use to register descriptors (see | |
12 // base/global_descriptors_posix.h). | |
13 const int kDescriptorStart = kPrimaryIPCChannel + 100; | |
jam
2012/09/05 01:31:35
don't add a new file to the content api, instead r
| |
14 | |
15 } // namespace content | |
16 | |
17 #endif // CONTENT_PUBLIC_COMMON_DESCRIPTORS_H_ | |
OLD | NEW |