| Index: chrome/browser/profiles/profile_info_cache.cc
|
| diff --git a/chrome/browser/profiles/profile_info_cache.cc b/chrome/browser/profiles/profile_info_cache.cc
|
| index 2078c029d9740c185a42796aba21a6de0cf420ae..7d449d570c35042afae65400abd5e1fa6a53c1aa 100644
|
| --- a/chrome/browser/profiles/profile_info_cache.cc
|
| +++ b/chrome/browser/profiles/profile_info_cache.cc
|
| @@ -121,6 +121,10 @@ void ReadBitmap(const base::FilePath& image_path,
|
| }
|
|
|
| *out_image = new gfx::Image(image);
|
| +
|
| + // As the image is going to be sent back to the calling thread, detach it from
|
| + // this thread.
|
| + (*out_image)->DetachFromThread();
|
| }
|
|
|
| void RunCallbackIfFileMissing(const base::FilePath& file_path,
|
|
|