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

Unified Diff: remoting/protocol/v2_authenticator.cc

Issue 889663003: Renamed GetMessage into GetNextMessage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « crypto/p224_spake_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/v2_authenticator.cc
diff --git a/remoting/protocol/v2_authenticator.cc b/remoting/protocol/v2_authenticator.cc
index f37e74fa354a6e517fb5eb58b63b42c0a54efe47..a9c5b07709df5f9cbaa11a55b9f735d4375d06d1 100644
--- a/remoting/protocol/v2_authenticator.cc
+++ b/remoting/protocol/v2_authenticator.cc
@@ -64,7 +64,7 @@ V2Authenticator::V2Authenticator(
state_(initial_state),
started_(false),
rejection_reason_(INVALID_CREDENTIALS) {
- pending_messages_.push(key_exchange_impl_.GetMessage());
+ pending_messages_.push(key_exchange_impl_.GetNextMessage());
}
V2Authenticator::~V2Authenticator() {
@@ -135,7 +135,7 @@ void V2Authenticator::ProcessMessageInternal(const buzz::XmlElement* message) {
started_ = true;
switch (result) {
case P224EncryptedKeyExchange::kResultPending:
- pending_messages_.push(key_exchange_impl_.GetMessage());
+ pending_messages_.push(key_exchange_impl_.GetNextMessage());
break;
case P224EncryptedKeyExchange::kResultFailed:
« no previous file with comments | « crypto/p224_spake_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698