Index: content/browser/gpu/gpu_process_host.cc |
diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc |
index 5e094136e22995736b9bf7eca73082867db16078..c6aec18302f4f036fbbc2b412eeaa32bdff6d26d 100644 |
--- a/content/browser/gpu/gpu_process_host.cc |
+++ b/content/browser/gpu/gpu_process_host.cc |
@@ -35,6 +35,7 @@ |
#include "content/public/common/content_client.h" |
#include "content/public/common/content_switches.h" |
#include "content/public/common/result_codes.h" |
+#include "content/public/common/sandbox_type.h" |
#include "content/public/common/sandboxed_process_launcher_delegate.h" |
#include "gpu/command_buffer/service/gpu_switches.h" |
#include "ipc/ipc_channel_handle.h" |
@@ -265,6 +266,10 @@ class GpuSandboxedProcessLauncherDelegate |
base::ScopedFD TakeIpcFd() override { return ipc_fd_.Pass(); } |
#endif // OS_WIN |
+ SandboxType GetSandboxType() override { |
+ return SANDBOX_TYPE_GPU; |
+ } |
+ |
private: |
#if defined(OS_WIN) |
base::CommandLine* cmd_line_; |