Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Unified Diff: remoting/protocol/authenticator_test_base.cc

Issue 1781173005: Handle pairing_client_id in the negotiating authenticators. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@config
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/protocol/authenticator_test_base.cc
diff --git a/remoting/protocol/authenticator_test_base.cc b/remoting/protocol/authenticator_test_base.cc
index 6c1be611359373b35fd1103ef7156f68e154c8bc..072b62117152542a44ab5dcbeb30bbe3a72dddf3 100644
--- a/remoting/protocol/authenticator_test_base.cc
+++ b/remoting/protocol/authenticator_test_base.cc
@@ -87,8 +87,9 @@ void AuthenticatorTestBase::ContinueAuthExchangeWith(Authenticator* sender,
scoped_ptr<buzz::XmlElement> message;
ASSERT_NE(Authenticator::WAITING_MESSAGE, sender->state());
if (sender->state() == Authenticator::ACCEPTED ||
- sender->state() == Authenticator::REJECTED)
+ sender->state() == Authenticator::REJECTED) {
return;
+ }
// Verify that once the started flag for either party is set to true,
// it should always stay true.

Powered by Google App Engine
This is Rietveld 408576698