Chromium Code Reviews| Index: chrome/browser/ui/browser_finder.cc |
| diff --git a/chrome/browser/ui/browser_finder.cc b/chrome/browser/ui/browser_finder.cc |
| index 4b5fe8eb6a6d62139e25f8a57567f22db9e1bb29..b8259c8fdb797c54c9f807aabfbd3666b14ddf3d 100644 |
| --- a/chrome/browser/ui/browser_finder.cc |
| +++ b/chrome/browser/ui/browser_finder.cc |
| @@ -60,7 +60,8 @@ bool BrowserMatches(Browser* browser, |
| shown_user_id.empty() |
| ? nullptr |
| : multi_user_util::GetProfileFromUserID(shown_user_id); |
| - matches_profile &= !shown_profile || shown_profile == profile; |
| + matches_profile &= !shown_profile || |
| + shown_profile == profile->GetOriginalProfile(); |
|
msw
2015/06/23 17:08:51
Should you use shown_profile->GetOriginalProfile()
msw
2015/06/23 17:08:51
Should this change be limited to when kMatchOrigin
xdai1
2015/06/30 16:16:49
Sorry my fault. Should compare with original profi
|
| } |
| #endif |