Chromium Code Reviews| Index: content/public/common/descriptors.h |
| diff --git a/content/public/common/descriptors.h b/content/public/common/descriptors.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..573afcee55592dedc688a2204f877cc87932461c |
| --- /dev/null |
| +++ b/content/public/common/descriptors.h |
| @@ -0,0 +1,14 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_PUBLIC_COMMON_DESCRIPTORS_H_ |
| +#define CONTENT_PUBLIC_COMMON_DESCRIPTORS_H_ |
| + |
| +#include "ipc/ipc_descriptors.h" |
| + |
| +// The first key that embedders can use to register descriptors (see |
| +// base/global_descriptors_posix.h). |
| +const int kDescriptorStart = kPrimaryIPCChannel + 100; |
|
agl
2012/08/30 01:31:47
This is a rather generic, unnamespaced name.
acleung
2012/08/31 23:36:33
Done.
|
| + |
| +#endif // CONTENT_PUBLIC_COMMON_DESCRIPTORS_H_ |