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

Unified Diff: content/public/common/content_descriptors.h

Issue 10876056: Additional file descriptor mappings for Android (Closed) Base URL: http://git.chromium.org/chromium/src.git@x509
Patch Set: Add descriptor_android.h to gyp Created 8 years, 2 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/descriptors_android.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/content_descriptors.h
diff --git a/content/public/common/content_descriptors.h b/content/public/common/content_descriptors.h
index a6373425b63cbb4a2ac190b5f613e2d215e39066..2ec82e8969ba991dc16759231982fc1628dcb80e 100644
--- a/content/public/common/content_descriptors.h
+++ b/content/public/common/content_descriptors.h
@@ -11,7 +11,15 @@
// base::GlobalDescriptors object (see base/global_descriptors_posix.h)
enum {
kCrashDumpSignal = kPrimaryIPCChannel + 1,
- kSandboxIPCChannel = kPrimaryIPCChannel + 2, // http://code.google.com/p/chromium/LinuxSandboxIPC
+ kSandboxIPCChannel, // http://code.google.com/p/chromium/LinuxSandboxIPC
+
+#if defined(OS_ANDROID)
+ kAndroidPropertyDescriptor,
+#endif
+
+ // The first key that embedders can use to register descriptors (see
+ // base/global_descriptors_posix.h).
+ kContentIPCDescriptorMax
};
#endif // CONTENT_PUBLIC_COMMON_CONTENT_DESCRIPTORS_H_
« no previous file with comments | « chrome/common/descriptors_android.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698