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

Unified Diff: blimp/net/client_connection_manager_unittest.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/net/client_connection_manager.cc ('k') | blimp/net/engine_authentication_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/client_connection_manager_unittest.cc
diff --git a/blimp/net/client_connection_manager_unittest.cc b/blimp/net/client_connection_manager_unittest.cc
index afe8dd463b56093ddba9a1f21ed6b7f70898625b..6337c9537cccb5583fd1c0643298c7729611ca65 100644
--- a/blimp/net/client_connection_manager_unittest.cc
+++ b/blimp/net/client_connection_manager_unittest.cc
@@ -28,7 +28,7 @@ using testing::SaveArg;
namespace blimp {
namespace {
-const char kDummyClientToken[] = "dummy-client-token";
+const char kDummyClientAuthToken[] = "dummy-client-token";
} // namespace
class ClientConnectionManagerTest : public testing::Test {
@@ -40,8 +40,9 @@ class ClientConnectionManagerTest : public testing::Test {
reader_(new testing::StrictMock<MockPacketReader>),
writer_(new testing::StrictMock<MockPacketWriter>),
start_connection_message_(
- CreateStartConnectionMessage(kDummyClientToken, kProtocolVersion)) {
- manager_->set_client_token(kDummyClientToken);
+ CreateStartConnectionMessage(kDummyClientAuthToken,
+ kProtocolVersion)) {
+ manager_->set_client_auth_token(kDummyClientAuthToken);
}
~ClientConnectionManagerTest() override {}
« no previous file with comments | « blimp/net/client_connection_manager.cc ('k') | blimp/net/engine_authentication_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698