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

Unified Diff: remoting/test/app_remoting_connection_helper.cc

Issue 1237093004: Support for connecting to localhost on the chromoting test driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaned up ConnectionSetupInfo, comments, and merge changes. Created 5 years, 5 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/test/app_remoting_connection_helper.cc
diff --git a/remoting/test/app_remoting_connection_helper.cc b/remoting/test/app_remoting_connection_helper.cc
index 83b92caa7cc19a90bd0d7c3a22673393392c4f04..0c3e074ce660271af98eef62ea34312f5947042d 100644
--- a/remoting/test/app_remoting_connection_helper.cc
+++ b/remoting/test/app_remoting_connection_helper.cc
@@ -77,9 +77,9 @@ bool AppRemotingConnectionHelper::StartConnection() {
timer_->Start(FROM_HERE, base::TimeDelta::FromSeconds(30),
run_loop_->QuitClosure());
- client_->StartConnection(AppRemotingSharedData->user_name(),
- AppRemotingSharedData->access_token(),
- remote_host_info);
+ client_->StartConnection(remote_host_info.GenerateConnectionSetupInfo(
+ AppRemotingSharedData->access_token(),
+ AppRemotingSharedData->user_name()));
run_loop_->Run();
timer_->Stop();

Powered by Google App Engine
This is Rietveld 408576698