Index: content/common/sandbox_win.cc |
diff --git a/content/common/sandbox_win.cc b/content/common/sandbox_win.cc |
index 26d1601739946cd3c85cc2e65476b641c7621a3a..d2f162d7e1be7b9767c5c5eba9b1c54e4c99ab90 100644 |
--- a/content/common/sandbox_win.cc |
+++ b/content/common/sandbox_win.cc |
@@ -729,8 +729,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))); |
} |