| Index: remoting/host/disconnect_window_mac.mm
|
| diff --git a/remoting/host/disconnect_window_mac.mm b/remoting/host/disconnect_window_mac.mm
|
| index 0d03b86709201564e52e7517d5bb015749a74974..d8d9c8de49c247fb38ae8fa7616875a1ac03be7f 100644
|
| --- a/remoting/host/disconnect_window_mac.mm
|
| +++ b/remoting/host/disconnect_window_mac.mm
|
| @@ -48,7 +48,7 @@ DisconnectWindowMac::DisconnectWindowMac()
|
| }
|
|
|
| DisconnectWindowMac::~DisconnectWindowMac() {
|
| - DCHECK(CalledOnValidThread());
|
| + DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
|
|
|
| // DisconnectWindowController is responsible for releasing itself in its
|
| // windowWillClose: method.
|
| @@ -58,7 +58,7 @@ DisconnectWindowMac::~DisconnectWindowMac() {
|
|
|
| void DisconnectWindowMac::Start(
|
| const base::WeakPtr<ClientSessionControl>& client_session_control) {
|
| - DCHECK(CalledOnValidThread());
|
| + DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
|
| DCHECK(client_session_control);
|
| DCHECK(window_controller_ == nil);
|
|
|
|
|