summaryrefslogtreecommitdiffstats
path: root/remoting/host/simple_host.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/simple_host.h')
-rw-r--r--remoting/host/simple_host.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/simple_host.h b/remoting/host/simple_host.h
index 760256a..7f9227a 100644
--- a/remoting/host/simple_host.h
+++ b/remoting/host/simple_host.h
@@ -47,7 +47,7 @@ class SimpleHost : public base::RefCountedThreadSafe<SimpleHost>,
public ClientConnection::EventHandler,
public JingleClient::Callback {
public:
- SimpleHost(const std::string& username, const std::string& password,
+ SimpleHost(const std::string& username, const std::string& auth_token,
Capturer* capturer, Encoder* encoder, EventExecutor* executor);
// Run the host porcess. This method returns only after the message loop
@@ -96,7 +96,7 @@ class SimpleHost : public base::RefCountedThreadSafe<SimpleHost>,
base::Thread encode_thread_;
std::string username_;
- std::string password_;
+ std::string auth_token_;
// Capturer to be used by SessionManager. Once the SessionManager is
// constructed this is set to NULL.