Chromium Code Reviews| Index: net/ocsp/nss_ocsp.cc |
| diff --git a/net/ocsp/nss_ocsp.cc b/net/ocsp/nss_ocsp.cc |
| index d83b239f8c59e6157ded51ec8c67adbcf742b460..6ba845576cb06052dfa11677a5f5c1daf596588b 100644 |
| --- a/net/ocsp/nss_ocsp.cc |
| +++ b/net/ocsp/nss_ocsp.cc |
| @@ -88,7 +88,10 @@ class OCSPIOLoop { |
| base::AutoLock autolock(lock_); |
| DCHECK(base::MessageLoopForIO::current()); |
| thread_checker_.DetachFromThread(); |
| - thread_checker_.CalledOnValidThread(); |
| + |
| + // CalledOnValidThread is the only available api to reassociate |
|
blundell
2013/11/05 16:35:06
API
Nico
2013/11/05 16:37:28
Done.
|
| + // thread_checker_ with the current thread. Result ignored intentionally. |
| + ignore_result(thread_checker_.CalledOnValidThread()); |
| shutdown_ = false; |
| used_ = false; |
| } |