| Index: chrome/browser/signin/chrome_signin_client.cc
|
| diff --git a/chrome/browser/signin/chrome_signin_client.cc b/chrome/browser/signin/chrome_signin_client.cc
|
| index 29a63551be3db5d2232a99e0a7de0d3ed8073535..3238a1affee070531cf781e31875926cef182b19 100644
|
| --- a/chrome/browser/signin/chrome_signin_client.cc
|
| +++ b/chrome/browser/signin/chrome_signin_client.cc
|
| @@ -79,7 +79,8 @@ void ChromeSigninClient::ClearSigninProcess() {
|
| }
|
|
|
| bool ChromeSigninClient::IsSigninProcess(int process_id) const {
|
| - return process_id == signin_host_id_;
|
| + return process_id != ChildProcessHost::kInvalidUniqueID &&
|
| + process_id == signin_host_id_;
|
| }
|
|
|
| bool ChromeSigninClient::HasSigninProcess() const {
|
|
|