Comment #8 on issue 18957 by [email protected]: Crash - gfx::Canvas::DrawStringInt(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, gfx::Font const&, unsigned int const&, int, int, int, int, int) http://code.google.com/p/chromium/issues/detail?id=18957
I'm confused about your confusion :) Before your change, NP_GetMIMEDescription was called from the UI thread (== glib thread), so everything was fine. With your change, NP_GetMIMEDescription gets called from a non-UI thread, so things go bad. We could fix it by loading on the UI thread only on linux, but that's a bad idea. Better is to load it in a UI thread in another process (we can only have 1 UI thread per process), so that executing NP_GetMIMEDescription can't crash the browser. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
