diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-10 18:11:26 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-10 18:11:26 +0000 |
commit | 33b7c47777e2b88e6a876cc48a562f03d5dddae4 (patch) | |
tree | 8a54c9b4970ae970d0df0bf8cd6d420fb3d1c3a2 /remoting/client/client_util.h | |
parent | 8d5c43c4a9958b592565da16912fd44960aab906 (diff) | |
download | chromium_src-33b7c47777e2b88e6a876cc48a562f03d5dddae4.zip chromium_src-33b7c47777e2b88e6a876cc48a562f03d5dddae4.tar.gz chromium_src-33b7c47777e2b88e6a876cc48a562f03d5dddae4.tar.bz2 |
Separate out HostConnection into an interface and a jingle-based
implementation. Refactor to inject the running thread for Jingle.
Review URL: http://codereview.chromium.org/2753006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49419 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/client_util.h')
-rw-r--r-- | remoting/client/client_util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/remoting/client/client_util.h b/remoting/client/client_util.h index ba9fefe..78ebcc0 100644 --- a/remoting/client/client_util.h +++ b/remoting/client/client_util.h @@ -9,10 +9,10 @@ namespace remoting { -// Get the login info from the console and writes into |host_jid|, |username| +// Get the login info from the console and writes into |host_jid|, |username|, // and |auth_token|. Return true if successful. -bool GetLoginInfo(std::string& host_jid, std::string& username, - std::string& auth_token); +bool GetLoginInfo(std::string* host_jid, std::string* username, + std::string* auth_token); } // namespace remoting |