| Index: base/posix/global_descriptors.h
|
| diff --git a/base/posix/global_descriptors.h b/base/posix/global_descriptors.h
|
| index edb299de5c957cc36f5fbd0ae85a056051012ba9..198bf468524c6964963edff20f81c22a0ae13265 100644
|
| --- a/base/posix/global_descriptors.h
|
| +++ b/base/posix/global_descriptors.h
|
| @@ -52,18 +52,7 @@ class BASE_EXPORT GlobalDescriptors {
|
|
|
| // Often we want a canonical descriptor for a given Key. In this case, we add
|
| // the following constant to the key value:
|
| -#if !defined(OS_ANDROID)
|
| static const int kBaseDescriptor = 3; // 0, 1, 2 are already taken.
|
| -#else
|
| - // 3 used by __android_log_write().
|
| - // 4 used by... something important on Android M.
|
| - // 5 used by... something important on Android L... on low-end devices.
|
| - // TODO(amistry): An Android, this mechanism is only used for tests since the
|
| - // content child launcher spawns a process by creating a new Activity using
|
| - // the Android APIs. For tests, come up with a way that doesn't require using
|
| - // a pre-defined fd.
|
| - static const int kBaseDescriptor = 6;
|
| -#endif
|
|
|
| // Return the singleton instance of GlobalDescriptors.
|
| static GlobalDescriptors* GetInstance();
|
| @@ -84,6 +73,9 @@ class BASE_EXPORT GlobalDescriptors {
|
| // Set the descriptor and |region| for the given |key|.
|
| void Set(Key key, int fd, base::MemoryMappedFile::Region region);
|
|
|
| + // Generates a random key and uses it to set the descriptor.
|
| + Key Register(int fd);
|
| +
|
| void Reset(const Mapping& mapping);
|
|
|
| private:
|
|
|