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

Unified Diff: chrome/common/chrome_descriptors.h

Issue 155905: Separates ipc code from common (http://crbug.com/16829) (Closed)
Patch Set: Fixes reference to 'common_message_traits' it's actually 'common_param_traits' Created 11 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/chrome_counters.cc ('k') | chrome/common/common_param_traits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_descriptors.h
diff --git a/chrome/common/chrome_descriptors.h b/chrome/common/chrome_descriptors.h
index c86eee54af6da5e37d6b490fe4f78d6a388f2364..8a4f6ee1e4e4d7652378b41e96622bc5ce2db984 100644
--- a/chrome/common/chrome_descriptors.h
+++ b/chrome/common/chrome_descriptors.h
@@ -5,12 +5,12 @@
#ifndef CHROME_COMMON_CHROME_DESCRIPTORS_H_
#define CHROME_COMMON_CHROME_DESCRIPTORS_H_
+#include "ipc/ipc_descriptors.h"
// This is a list of global descriptor keys to be used with the
// base::GlobalDescriptors object (see base/global_descriptors_posix.h)
enum {
- kPrimaryIPCChannel = 0,
- kCrashDumpSignal = 1,
- kSandboxIPCChannel = 2, // http://code.google.com/p/chromium/LinuxSandboxIPC
+ kCrashDumpSignal = kPrimaryIPCChannel + 1,
+ kSandboxIPCChannel = kPrimaryIPCChannel + 2, // http://code.google.com/p/chromium/LinuxSandboxIPC
};
#endif // CHROME_COMMON_CHROME_DESCRIPTORS_H_
« no previous file with comments | « chrome/common/chrome_counters.cc ('k') | chrome/common/common_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698