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 b3425b0d72e0ed354646da8c802154312fdf1f17..cec5417725819b1bde29e70f9dc486e2f112c9fd 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -191,8 +191,6 @@ |
#include "base/win/windows_version.h" |
#include "content/browser/renderer_host/dwrite_font_proxy_message_filter_win.h" |
#include "content/common/font_cache_dispatcher_win.h" |
-#include "content/common/sandbox_win.h" |
-#include "sandbox/win/src/sandbox_policy.h" |
#include "ui/gfx/win/dpi.h" |
#endif |
@@ -378,15 +376,7 @@ class RendererSandboxedProcessLauncherDelegate |
#if defined(OS_WIN) |
bool PreSpawnTarget(sandbox::TargetPolicy* policy) override { |
- AddBaseHandleClosePolicy(policy); |
- |
- const base::string16& sid = |
- GetContentClient()->browser()->GetAppContainerSidForSandboxType( |
- GetSandboxType()); |
- if (!sid.empty()) |
- AddAppContainerPolicy(policy, sid.c_str()); |
- |
- return GetContentClient()->browser()->PreSpawnRenderer(policy); |
+ return true; |
} |
#elif defined(OS_POSIX) |