Index: content/public/browser/content_browser_client.h |
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h |
index 18976390c16b3ae327bedc94cea83011874450a0..343b8753a09028c4fc8530a42ba9e505b7cde7ae 100644 |
--- a/content/public/browser/content_browser_client.h |
+++ b/content/public/browser/content_browser_client.h |
@@ -764,18 +764,12 @@ class CONTENT_EXPORT ContentBrowserClient { |
// Populates |mappings| with all files that need to be mapped before launching |
// a child process. |
-#if defined(OS_ANDROID) |
- virtual void GetAdditionalMappedFilesForChildProcess( |
- const base::CommandLine& command_line, |
- int child_process_id, |
- content::FileDescriptorInfo* mappings, |
- std::map<int, base::MemoryMappedFile::Region>* regions) {} |
-#elif defined(OS_POSIX) && !defined(OS_MACOSX) |
+#if defined(OS_POSIX) && !defined(OS_MACOSX) |
virtual void GetAdditionalMappedFilesForChildProcess( |
const base::CommandLine& command_line, |
int child_process_id, |
content::FileDescriptorInfo* mappings) {} |
-#endif // defined(OS_ANDROID) |
+#endif // defined(OS_POSIX) && !defined(OS_MACOSX) |
#if defined(OS_WIN) |
// This is called on the PROCESS_LAUNCHER thread before the renderer process |