summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/chrome_descriptors.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/common/chrome_descriptors.h')
-rw-r--r--chromium/chrome/common/chrome_descriptors.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/chromium/chrome/common/chrome_descriptors.h b/chromium/chrome/common/chrome_descriptors.h
new file mode 100644
index 00000000000..dd14978db86
--- /dev/null
+++ b/chromium/chrome/common/chrome_descriptors.h
@@ -0,0 +1,23 @@
+// 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 CHROME_COMMON_CHROME_DESCRIPTORS_H_
+#define CHROME_COMMON_CHROME_DESCRIPTORS_H_
+
+#include "build/build_config.h"
+#include "content/public/common/content_descriptors.h"
+
+enum {
+#if defined(OS_ANDROID)
+ kAndroidLocalePakDescriptor = kContentIPCDescriptorMax + 1,
+ kAndroidSecondaryLocalePakDescriptor,
+ kAndroidChrome100PercentPakDescriptor,
+ kAndroidUIResourcesPakDescriptor,
+ // DFMs with native resources typically do not share file descriptors with
+ // child processes. Hence no corresponding *PakDescriptor is defined.
+ kAndroidMinidumpDescriptor,
+#endif
+};
+
+#endif // CHROME_COMMON_CHROME_DESCRIPTORS_H_