| Index: content/common/sandbox_win.cc
|
| diff --git a/content/common/sandbox_win.cc b/content/common/sandbox_win.cc
|
| index 96bb05c347d61c6a90283ecfb88089cfd3a3166a..c0afe7651b1c80b7ddfbdfed9fece79dc150bd03 100644
|
| --- a/content/common/sandbox_win.cc
|
| +++ b/content/common/sandbox_win.cc
|
| @@ -728,8 +728,8 @@ base::Process StartSandboxedProcess(
|
|
|
| base::SharedMemory direct_write_font_cache_section;
|
| if (direct_write_font_cache_section.Open(name, true)) {
|
| - void* shared_handle =
|
| - policy->AddHandleToShare(direct_write_font_cache_section.handle());
|
| + void* shared_handle = policy->AddHandleToShare(
|
| + direct_write_font_cache_section.handle().GetHandle());
|
| cmd_line->AppendSwitchASCII(switches::kFontCacheSharedHandle,
|
| base::UintToString(reinterpret_cast<unsigned int>(shared_handle)));
|
| }
|
|
|