| Index: content/gpu/gpu_main.cc
|
| diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc
|
| index 306d96853addb35b5ad4b9ce458e64b27c9b6fe1..5e71bc2ffb2be0d1ee8e6f9b05c937aa388ae709 100644
|
| --- a/content/gpu/gpu_main.cc
|
| +++ b/content/gpu/gpu_main.cc
|
| @@ -158,7 +158,7 @@ int GpuMain(const content::MainFunctionParams& parameters) {
|
| #endif
|
|
|
| if (do_init_sandbox) {
|
| - content::InitializeSandbox();
|
| + gpu_info.sandboxed = content::InitializeSandbox();
|
| }
|
| }
|
| #endif
|
| @@ -171,8 +171,10 @@ int GpuMain(const content::MainFunctionParams& parameters) {
|
| // content.
|
| sandbox::TargetServices* target_services =
|
| parameters.sandbox_info->target_services;
|
| - if (target_services)
|
| + if (target_services) {
|
| target_services->LowerToken();
|
| + gpu_info.sandboxed = true;
|
| + }
|
| }
|
| #endif
|
|
|
|
|