Index: content/browser/renderer_host/render_process_host_impl.cc |
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc |
index efe852b1a15f19743b1d06e6bdb6c29209d22558..bb1d3298bf684c1a3ddce9da8390973c6b0f9735 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -170,6 +170,10 @@ |
#include "ui/gfx/win/dpi.h" |
#endif |
+#if defined(OS_MACOSX) |
+#include "content/public/common/sandbox_type_mac.h" |
+#endif |
+ |
#if defined(ENABLE_WEBRTC) |
#include "content/browser/media/webrtc_internals.h" |
#include "content/browser/renderer_host/media/media_stream_track_metrics_host.h" |
@@ -329,6 +333,11 @@ class RendererSandboxedProcessLauncherDelegate |
virtual int GetIpcFd() OVERRIDE { |
return ipc_fd_; |
} |
+#if defined(OS_MACOSX) |
+ virtual SandboxType GetSandboxType() OVERRIDE { |
+ return SANDBOX_TYPE_RENDERER; |
+ } |
+#endif |
#endif // OS_WIN |
private: |