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

Unified Diff: blimp/common/logging.cc

Issue 2281783002: Changes client_token to be client_auth_token. (Closed)
Patch Set: Linting. Created 4 years, 3 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 | « blimp/common/get_client_token.cc ('k') | blimp/common/logging_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/common/logging.cc
diff --git a/blimp/common/logging.cc b/blimp/common/logging.cc
index 0402aa1f22c53f4f2deb5bbdbcd301015b3ce55e..9ec2a76997331ab6b47899bfe111dcffb6e505ff 100644
--- a/blimp/common/logging.cc
+++ b/blimp/common/logging.cc
@@ -198,9 +198,10 @@ void ExtractProtocolControlMessageFields(const BlimpMessage& message,
switch (message.protocol_control().connection_message_case()) {
case ProtocolControlMessage::kStartConnection:
AddField("subtype", "START_CONNECTION", output);
- AddField("client_token",
- message.protocol_control().start_connection().client_token(),
- output);
+ AddField(
+ "client_token",
+ message.protocol_control().start_connection().client_auth_token(),
+ output);
AddField("protocol_version",
message.protocol_control().start_connection().protocol_version(),
output);
« no previous file with comments | « blimp/common/get_client_token.cc ('k') | blimp/common/logging_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698